数据库恢复时sql server版本问题
当我想备份 SQL Server 数据库时,出现以下错误:
运行版本 10.50.1600 的服务器上的数据库备份 版本与该服务器不兼容 运行版本 10.00.4000
When I want to backup the SQL Server database, I get this error:
the database backup on a server running version 10.50.1600 that
version incompatible with this server
which is running version 10.00.4000
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您可能正在尝试在 SQL 2008 服务器上恢复 SQL 2008 R2 备份;不幸的是,我认为这是不可能的。
It sounds like maybe you are trying to restore a SQL 2008 R2 backup on a SQL 2008 server; Unfortunately, I don't think that is possible.
备份与备份无法进行恢复,但您可以尝试使用数据生成数据库脚本并在目标服务器上运行该脚本。
为此:
右键单击数据库...
任务>>生成脚本
...在向导的选项页面上将“脚本数据”设置为 true。
您还可以通过选择“服务器版本脚本”字段来设置脚本兼容性。
Backup & Restore is not possible but you can try generating database script with data and run the script on the destination server.
To do this:
Right-Click on the database...
Tasks >> Generate Scripts
... on the Options page of the wizard set "Script Data" to true.
You can also set the script compatibility by selecting "Script for Server Version" field.