Sql server version problem when database restore

允我心安 提交于 2019-12-04 05:43:19

问题


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


回答1:


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.




回答2:


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.



来源:https://stackoverflow.com/questions/4566397/sql-server-version-problem-when-database-restore

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!