時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
今天在客戶那里拷了半天,在QA里執(zhí)行sp_attach_db或者sp_attach_single_file_db,出現(xiàn)提示:錯誤1813:未能打開新數(shù)據(jù)庫’dbname’,create database將終止。設(shè)備激活錯誤。物理文件名’d:sql servermssqldatadbname _log.ldf’可能有誤!,后來到baidu里找到相關(guān)的方法,不錯,問題解決了。按下面的步驟處理:
1.新建一個同名的數(shù)據(jù)庫
2.再停掉sqlserver服務(wù)(注意不要分離數(shù)據(jù)庫)
3.用原數(shù)據(jù)庫的數(shù)據(jù)文件覆蓋掉這個新建的數(shù)據(jù)庫
4.再重啟sqlserver服務(wù)
5.此時打開企業(yè)管理器時會出現(xiàn)置疑,先不管,執(zhí)行下面的語句(注意修改其中的數(shù)據(jù)庫名)
6.完成后一般就可以訪問數(shù)據(jù)庫中的數(shù)據(jù)了。這時,數(shù)據(jù)庫本身一般還有問題,解決辦法是:利用數(shù)據(jù)庫的腳本創(chuàng)建一個新的數(shù)據(jù)庫,然后通過DTS將數(shù)據(jù)導(dǎo)進去就行了
use master
go
sp_configure ’allow updates’,1 reconfigure with override
go
update sysdatabases set status =32768 where name=’置疑的數(shù)據(jù)庫名’
go
sp_dboption ’置疑的數(shù)據(jù)庫名’, ’single user’, ’true’
go
dbcc checkdb(’置疑的數(shù)據(jù)庫名’)
go
update sysdatabases set status =28 where name=’置疑的數(shù)據(jù)庫名’
go
sp_configure ’allow updates’, 0 reconfigure with override
go
sp_dboption ’置疑的數(shù)據(jù)庫名’, ’single user’, ’false’
go
關(guān)鍵詞標簽:SQL Server,附加數(shù)據(jù)庫
相關(guān)閱讀
熱門文章 淺談JSP JDBC來連接SQL Server 2005的方法 SqlServer2005對現(xiàn)有數(shù)據(jù)進行分區(qū)具體步驟 sql server系統(tǒng)表損壞的解決方法 MS-SQL2005服務(wù)器登錄名、角色、數(shù)據(jù)庫用戶、角色、架構(gòu)的關(guān)系
人氣排行 配置和注冊O(shè)DBC數(shù)據(jù)源-odbc數(shù)據(jù)源配置教程 如何遠程備份(還原)SQL2000數(shù)據(jù)庫 SQL2000數(shù)據(jù)庫遠程導(dǎo)入(導(dǎo)出)數(shù)據(jù) SQL2000和SQL2005數(shù)據(jù)庫服務(wù)端口查看或修改 修改Sql Server唯一約束教程 SQL Server 2005降級到2000的正確操作步驟 sql server系統(tǒng)表損壞的解決方法 淺談JSP JDBC來連接SQL Server 2005的方法