1. 程式人生 > >Northwind數據庫不能在SQL Server 2012上創建

Northwind數據庫不能在SQL Server 2012上創建

class 數據 set 不出 clas imp 註釋 win 錯誤提示

附加mdf文件不出意料會提示數據庫格式無法兼容,試著通過腳本來創建,會有以下錯誤提示:

Could not find stored procedure ‘sp_dboption‘.

原因是SQL Server 2012不再支持sp_dboption存儲過程,解決辦法也很簡單。

把下面兩句註釋或者刪除

exec sp_dboption ‘Northwind‘,‘trunc. log on chkpt.‘,‘true‘
exec sp_dboption ‘Northwind‘,‘select into/bulkcopy‘,‘true‘

改成下面這句
alter database Northwind set recovery simple


Northwind數據庫不能在SQL Server 2012上創建