国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數據庫 > SQL Server > 正文

SQLServer數據庫從高版本降級到低版本實例詳解

2024-08-31 01:04:27
字體:
來源:轉載
供稿:網友

SQLServer數據庫從高版本降級到低版本實例詳解

由于目前還廣泛使用著SQLServer2000,很多公司又想使用新的SQLServer,從而直接【分離/附加】或者【備份/還原】數據庫,在不同版本之間存放。往往就會遇到版本不兼容的問題。前幾天遇到了從我本機2008R2上備份的一個數據庫還原到2008上面時報錯:SQLServer,數據庫,高版本降級到低版本,SQLServer高版本降級到低版

從運行版本10.50.2500(2008R2是10.50)和10.00.1600(2008是10.00)中可以看出這個版本不兼容問題,大部分情況下,從低版本升級到高版本,只要不是跨度太大,如2000升級到2012,都不會怎么報錯。除非使用了一些新版本不兼容的特性如*=來實現left join的語句。但是就像上圖那樣,從高版本還原到低版本的時候,問題就出現了,而且幾乎一定會報錯。

下面給出幾個小建議,例子是從2008 降級到2005:

方法一:使用圖形化操作(GUI),打開SSMS(SQL Server Management Studio)

 

步驟1:右鍵你要降級的數據庫,按下圖選擇:

 

SQLServer,數據庫,高版本降級到低版本,SQLServer高版本降級到低版

步驟2:在對話框中選擇:

SQLServer,數據庫,高版本降級到低版本,SQLServer高版本降級到低版

   步驟3:在【高級】中選擇下圖:

 

SQLServer,數據庫,高版本降級到低版本,SQLServer高版本降級到低版

步驟4:把腳本保存起來,然后在SQLServer2005中運行腳本。

詳細步驟可以看:http://bbs.csdn.net/topics/390438560?page=1#post-394316973 中的13樓的回復,有截圖

步驟5:通過【任務】→【導入數據】,把數據從2008導入到使用腳本創建的庫上如下圖,就完成了:

 

SQLServer,數據庫,高版本降級到低版本,SQLServer高版本降級到低版

方法二:使用系統自帶的存儲過程實現:sp_dbcmptlevel ——將某些數據庫行為設置為與指定的 SQL Server 版本兼容

下面是其內部實現代碼:

SET QUOTED_IDENTIFIER ON  SET ANSI_NULLS ON  GO  create procedure sys.sp_dbcmptlevel      -- 1997/04/15   @dbname sysname = NULL,         -- database name to change   @new_cmptlevel tinyint = NULL OUTPUT  -- the new compatibility level to change to  as   set nocount  on     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 (@@nestlevel > 1)   begin     raiserror(15432,-1,-1,'sys.sp_dbcmptlevel')     return (1)   end     -- If no @dbname given, just list the valid compatibility level values.   if @dbname is null   begin     raiserror (15048, -1, -1, @cmptlvl80, @cmptlvl90, @cmptlvl100)     return (0)   end     -- Verify the database name and get info   select @dbid = dbid, @dbsid = sid ,@orig_cmptlevel = cmptlevel     from master.dbo.sysdatabases     where name = @dbname     -- If @dbname not found, say so and list the databases.   if @dbid is null   begin     raiserror(15010,-1,-1,@dbname)     print ' '     select name as 'Available databases:'       from master.dbo.sysdatabases     return (1)   end     -- Now save the input compatibility level and initialize the return clevel   -- to be the current clevel   select @input_cmptlevel = @new_cmptlevel   select @new_cmptlevel = @orig_cmptlevel     -- If no clevel was supplied, display and output current level.   if @input_cmptlevel is null   begin     raiserror(15054, -1, -1, @orig_cmptlevel)     return(0)   end     -- If invalid clevel given, print usage and return error code   -- 'usage: sp_dbcmptlevel [dbname [, compatibilitylevel]]'   if @input_cmptlevel not in (@cmptlvl80, @cmptlvl90, @cmptlvl100)   begin     raiserror(15416, -1, -1)     print ' '     raiserror (15048, -1, -1, @cmptlvl80, @cmptlvl90, @cmptlvl100)     return (1)   end     -- Only the SA or the dbo of @dbname can execute the update part   -- of this procedure sys.so check.   if (not (is_srvrolemember('sysadmin') = 1)) and suser_sid() <> @dbsid     -- ALSO ALLOW db_owner ONLY IF DB REQUESTED IS CURRENT DB     and (@dbid <> db_id() or is_member('db_owner') <> 1)   begin     raiserror(15418,-1,-1)     return (1)   end     -- If we're in a transaction, disallow this since it might make recovery impossible.   set implicit_transactions off   if @@trancount > 0   begin     raiserror(15002,-1,-1,'sys.sp_dbcmptlevel')     return (1)   end     set @exec_stmt = 'ALTER DATABASE ' + quotename(@dbname, '[') + ' SET COMPATIBILITY_LEVEL = ' + cast(@input_cmptlevel as nvarchar(128))     -- Note: database @dbname may not exist anymore   exec(@exec_stmt)     select @new_cmptlevel = @input_cmptlevel     return (0) -- sp_dbcmptlevel  GO 

語法

sp_dbcmptlevel [ [ @dbname = ] name ] [ , [ @new_cmptlevel = ] version ] 

參數

[ @dbname = ] name 

要為其更改兼容級別的數據庫的名稱。數據庫名稱必須符合標識符的規則。name 的數據類型為 sysname,默認值為 NULL。

[ @new_cmptlevel = ] version

數據庫要與之兼容的 SQL Server 的版本。version 的數據類型為 tinyint,默認值為 NULL。該值必須為下列值之一:

80 = SQL Server 2000

90 = SQL Server 2005

100 = SQL Server 200

返回代碼值

 

0(成功)或 1(失敗)

注意事項:

后續版本的 Microsoft SQL Server 將刪除該功能。請不要在新的開發工作中使用該功能,并盡快修改當前還在使用該功能的應用程序。 改為使用 ALTER DATABASE 兼容級別。

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!


注:相關教程知識閱讀請移步到MSSQL教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 天峨县| 洛扎县| 通州市| 平谷区| 新兴县| 泗水县| 来宾市| 和龙市| 太白县| 灵山县| 玛沁县| 永兴县| 夹江县| 平凉市| 岐山县| 泗阳县| 福建省| 秦皇岛市| 青神县| 平度市| 玉树县| 高邮市| 玛沁县| 鄂托克旗| 龙江县| 南溪县| 遂宁市| 都安| 台山市| 丹凤县| 报价| 出国| 略阳县| 盐亭县| 巴塘县| 息烽县| 澳门| 沅陵县| 盐津县| 东阳市| 绥德县|