當前位置:首頁 » 編程語言 » sql降級

sql降級

發布時間: 2022-09-04 14:57:33

sql2008的數據降級到sql2005時出錯,如何操作

坦白地說,這種情況,指的是報錯的信息,跟我今天遇到的問題一樣。 描述下我的問題: 1、重裝系統之前,裝有SQL Server 2005發展版本資料庫以及SQL Server 2008企業版資料庫; 2、重裝系統之後,裝有SQL Server 2005發展版本資料庫,把以前的用2005使用的資料庫附加的時候報錯,錯誤信息如題主。 原因分析: 我原來在使用和操作的過程中,曾有用過SQL server 2008版本去打開過該資料庫,並且執行一些簡單的操作。導致資料庫信息與2005版本對應不上。 根據你的問題,我猜測,我猜測,你的2005版本資料庫是否曾被2008版本打開過,而且2008版本資料庫不同?

㈡ 如何從SQL Server企業版「降級」到標准版

2012年微軟公布了Windows Server 2012的四個單品版本,安裝所服務的企業規模從低往高了數,分別為Foundation、Essentials、Standard 以及Datacenter。

其中,Windows Server 2012 Foundation版本僅提供給OEM廠商,限定用戶15位,提供通用伺服器功能,不支持虛擬化。

Windows Server 2012 Essentials面向中小企業,用戶限定在25位以內,該版本簡化了界面,預先配置雲服務連接,不支持虛擬化,預計售價425美元。

Windows Server 2012標准版提供完整的Windows Server功能,限制使用兩台虛擬主機,預計售價882美元。

Windows Server 2012數據中心版提供完整的Windows Server功能,不限制虛擬主機數量,預計售價4809美元。

對比Windows Server 2012四個版本的異同詳細內容,請見下表。

圖 Windows Server 2012四個版本的異同

並且,Windows Server 2012四個版本分別對於硬體設備都有各自不同的最低要求。其中,Foundation版本推薦採用至強E3-1240 v2處理器,16GB—32GB內存,128GB SSD或以上(可以SSD+HDD);Essentials版本推薦採用至強E3-1270 v2處理器、32GB內存、240GB SSD或以上;Standard版本推薦雙核的至強E5-2620處理器,64—256GB內存、480GB SSD或以上;Datacenter版本推薦雙核至強E5-2690和至少256GB DDR3,至少480GB SSD。

㈢ SQLServer · 最佳實踐 · 如何將SQL Server 2012降級到2008 R2

SQL
Server資料庫是不支持降級還原的,如果你要將高版本的資料庫轉換為低版本的資料庫,可以採取以下方法:
在高版本的資料庫(比如SQL
Server
2012)中生成資料庫的腳本文件,在生成腳本文件的高級選項中選擇目標伺服器的版本(比如SQL
Server
2008),數據類型為"架構和數據".
腳本生成後在目標伺服器中運行腳本文件即可.

㈣ 如何把SQLServer資料庫從高版本降級到低版

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

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

㈤ MSSQL2008降級為MSSQL2005的問題

2008的資料庫給2005的資料庫服務騎上用的時候方法就是:

資料庫上右擊、所有任務、生成腳本、選項是選為2005版本生成資料庫腳本

然後把生成的腳本在2005的資料庫上進行執行以創建在2005版本的伺服器上資料庫,只要你生成腳本是選了為2005生成腳本,一般是不會出現問題的

以上只是創建了資料庫,沒有向資料庫裡面插入數據記錄

插入數據的話要用本地SQL連上遠程SQL,然後再遠程的已創建的資料庫上右擊導入數據才行

㈥ 如何把SQL Server資料庫從高版本降級到低版本

由於目前還廣泛使用著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)

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

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

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

步驟4:把腳本保存起來,然後在SQLServer2005中運行腳本。
詳細步驟可以看: 中的13樓的回復,有截圖
步驟5:通過【任務】→【導入數據】,把數據從2008導入到使用腳本創建的庫上如下圖,就完成了:

方法二:使用系統自帶的存儲過程實現:sp_dbcmptlevel ——將某些資料庫行為設置為與指定的 SQL Server 版本兼容
下面是其內部實現代碼:

[sql] view plain print?
SET QUOTED_IDENTIFIER ON
SET ANSI_NULLS ON
GO
create procere 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 procere 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

語法

[sql] view plain print?
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 2008
返回代碼值
0(成功)或 1(失敗)

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

㈦ 如何把SQLServer資料庫從高版本降級到低版本

直接給SQL Server資料庫降級是不支持的。但您可以使用一個靈活的變通方法來解決這個問題。您可以使用SQL Server Management Studio中首先為一個較低的版本生成資料庫腳本,然後使用數據導入/導出向導將原來資料庫數據傳輸到高版本資料庫中。例如,如果你想降低一個SQL Server 2008資料庫到SQL Server 2005,您可以按照以下步驟:
1. 在SQL Server Management Studio 2008中打開SQL Server2008資料庫。
2.在對象資源管理器中右鍵單擊資料庫名稱並選擇「任務生成腳本......」
3.在「腳本向導」對話框中,選擇資料庫的名稱,並檢查「腳本所有在選擇資料庫對象」。然後點擊「下一步」。
4.設置為SQL Server2005的伺服器版本的腳本「選項」。
5. SQL Server 2005中運行腳本。
6. 使用SQL Server導入和導出向導從SQL Server 2008到SQL Server 2005導入數據
同樣,如果你想降低一個SQL Server 2005資料庫到SQL Server 2000,你也可以在SQL Server 2005 Management Studio中執行上述步驟。

㈧ 誰可以幫我把SQL Server2008文件降級為2005版本的,求助求助啊

高版本的資料庫不能在低版本上還原或者附加,你試下通過向導先把對象腳本導成腳本(注意在腳本選項那,把版本設置為2005)
然後再通過「導入導出數據」或者SSIS把數據導過去

熱點內容
php函數默認值 發布:2025-01-15 07:34:31 瀏覽:238
編譯應用後apk無法打開 發布:2025-01-15 07:33:45 瀏覽:437
lc腳本編輯器 發布:2025-01-15 07:18:59 瀏覽:528
追劇腳本 發布:2025-01-15 07:00:39 瀏覽:446
c語言字元串庫函數 發布:2025-01-15 06:54:49 瀏覽:526
c語言的工作 發布:2025-01-15 06:50:50 瀏覽:521
口語交際訪問 發布:2025-01-15 06:44:13 瀏覽:329
編程少兒學習 發布:2025-01-15 06:39:03 瀏覽:504
伺服器搭建怎麼設置 發布:2025-01-15 06:39:01 瀏覽:152
格魯爾要什麼配置 發布:2025-01-15 06:26:56 瀏覽:857