Restore a SQL Server 2000 backup on SQL Server 2012

帅比萌擦擦* 提交于 2019-12-28 04:00:49

问题


I have got following error message while restoring a backup from SQL Server 2000 to the latest version. I do not know the old version, now I am using SQL Server 2012 (11.0.3128.0).

The error message is:

Msg 3169, Level 16, State 1, Server FF101, Line 1
The database was backed up on a server running version 8.00.0760. That version is incompatible with this server, which is running version 11.00.3128. Either restore the database on a server that supports the backup, or use a backup that is compatible with this server.


回答1:


You are trying to restore a SQL Server 2000 database on SQL Server 2012. This is not supported.

You will need to restore your database on an instance of SQL Server 2005, 2008 or 2008 R2 first, then back it up from there, then restore the new backup on SQL Server 2012. Microsoft explains this here.



来源:https://stackoverflow.com/questions/15788624/restore-a-sql-server-2000-backup-on-sql-server-2012

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