免费视频播放久久久_亚洲欧美精品无人区国产一区_久久精品这里精品热_久久久久国内精品国产片

MSSQL數(shù)據(jù)庫還原置疑的處理方法

發(fā)布時間:2013/2/12     點擊數(shù):4861

步驟1:

創(chuàng)建一個新的數(shù)據(jù)庫,命名為原來數(shù)據(jù)庫的名字。

步驟2:

停止SQL Server

步驟3:

把老數(shù)據(jù)庫的MDF文件替換新數(shù)據(jù)庫的相應(yīng)的MDF文件,并把LDF文件刪除。

步驟4:

重新啟動SQL Server服務(wù),然后運行如下命令:

Use Master

Go

sp_configure 'allow updates', 1

reconfigure with override

Go

begin tran

update sysdatabases set status = 32768 where name = 'db_name'

--Verify one row is updated before committing

commit tran

步驟5:

停止SQL然后重新啟動SQL Server服務(wù),然后運行如下命令:

DBCC TRACEON(3604)

DBCC REBUILD_LOG('db_name','c:\mssql7\data\dbxxx_3.ldf')

Go

步驟6:

停止SQL然后重新啟動SQL Server服務(wù),然后運行:

use master

update sysdatabases set status = 8 where name = 'db_name'

Go

sp_configue 'allow updates', 0

reconfigure with override

Go

步驟7:

運行dbcc checkdb(db_name) 檢查數(shù)據(jù)庫的完整性

注:都要替換成真實的數(shù)據(jù)庫名字。