SQLServer数据库从高版本降级到低版本实例详解
SQLServer数据库从高版本降级到低版本实例详解由于目前还广泛使用着SQLServer2000,很多公司又想使用新的SQLServer,从而直接【分离/附加】或者【备份/还原】数据库,在不同版本之间存放。往往就会遇到版本不兼容的问题。前几天遇到了从我本机2008R2上备份的一个数据库还原到2008上面时报错: 从运行版本10.50.2500(2008R2是10.50)和10.00.1600(2008是10.00)中可以看出这个版本不兼容问题,大部分情况下,从低版本升级到高版本,只要不是跨度太大,如2000升级到2012,都不会怎么报错。除非使用了一些新版本不兼容的特性如*=来实现left join的语句。但是就像上图那样,从高版本还原到低版本的时候,问题就出现了,而且几乎一定会报错。 下面给出几个小建议,例子是从2008 降级到2005: 方法一:使用图形化操作(GUI),打开SSMS(SQL Server Management Studio)
步骤2:在对话框中选择:
详细步骤可以看:http://bbs.csdn.net/topics/390438560?page=1#post-394316973中的13楼的回复,有截图 步骤5:通过【任务】→【导入数据】,把数据从2008导入到使用脚本创建的库上如下图,就完成了: 方法二:使用系统自带的存储过程实现:sp_dbcmptlevel——将某些数据库行为设置为与指定的 SQL Server 版本兼容下面是其内部实现代码: declare @exec_stmt nvarchar(max)declare @returncode int declare @comptlevel float(8) declare @dbid int -- dbid of the database declare @dbsid varbinary(85) -- id of the owner of the database declare @orig_cmptlevel tinyint -- original compatibility level declare @input_cmptlevel tinyint -- compatibility level passed in by user,@cmptlvl80 tinyint -- compatibility to SQL Server Version 8.0,@cmptlvl90 tinyint -- compatibility to SQL Server Version 9.0,@cmptlvl100 tinyint -- compatibility to SQL Server Version 10.0 select @cmptlvl80 = 80,@cmptlvl90 = 90,@cmptlvl100 = 100 -- SP MUST BE CALLED AT ADHOC LEVEL -- -- If no @dbname given,just list the valid compatibility level values. -- Verify the database name and get info -- If @dbname not found,say so and list the databases. -- Now save the input compatibility level and initialize the return clevel -- If no clevel was supplied,display and output current level. -- If invalid clevel given,print usage and return error code -- Only the SA or the dbo of @dbname can execute the update part -- If we're in a transaction,disallow this since it might make recovery impossible. set @exec_stmt = 'ALTER DATABASE ' + quotename(@dbname,'[') + ' SET COMPATIBILITY_LEVEL = ' + cast(@input_cmptlevel as nvarchar(128)) -- Note: database @dbname may not exist anymore select @new_cmptlevel = @input_cmptlevel return (0) -- sp_dbcmptlevel 语法参数要为其更改兼容级别的数据库的名称。数据库名称必须符合标识符的规则。name 的数据类型为 sysname,默认值为 NULL。[ @new_cmptlevel =] version数据库要与之兼容的 SQL Server 的版本。version 的数据类型为 tinyint,默认值为 NULL。该值必须为下列值之一:80= SQL Server 200090= SQL Server 2005100= SQL Server 200返回代码值0(成功)或 1(失败) 注意事项:后续版本的 Microsoft SQL Server 将删除该功能。请不要在新的开发工作中使用该功能,并尽快修改当前还在使用该功能的应用程序。 改为使用 ALTER DATABASE 兼容级别。 感谢阅读,希望能帮助到大家,谢谢大家对本站的支持! (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |