IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類|軟件專題|手機(jī)版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當(dāng)前所在位置:首頁(yè)數(shù)據(jù)庫(kù)MSSQL → SQL Server 2005日志文件損壞的處理方法

SQL Server 2005日志文件損壞的處理方法

時(shí)間:2015/6/28來(lái)源:IT貓撲網(wǎng)作者:網(wǎng)管聯(lián)盟我要評(píng)論(0)

    在實(shí)際的工作和學(xué)習(xí)中,許多人的sql server 2005數(shù)據(jù)庫(kù)日志文件可能會(huì)發(fā)生損壞,例如硬件故障、計(jì)算機(jī)非正常重啟或關(guān)機(jī)等等。

    在SQL Server 2005的日志文件損壞時(shí),你會(huì)發(fā)現(xiàn)以下的情況:

    ◆1、在SQL Server Management Studio中顯示數(shù)據(jù)庫(kù)處于置疑(suspect)狀態(tài)。

    ◆2、事件日志可能會(huì)出現(xiàn)如下錯(cuò)誤信息:
   
    Could not redo log record (21737:686:9), for transaction ID (0:2334886), on page (1:37527), database 'Test' (database ID 15). Page: LSN = (21735:299:5), type = 2. Log: OpCode = 3, context 19, PrevPageLSN: (21737:615:1). Restore from a backup of the database, or repair the database.

    During redoing of a logged operation in database 'Test', an error occurred at log record ID (76116:286:2). Typically, the specific failure is previously logged as an error in the Windows Event Log service. Restore the database from a full backup, or repair the database.

    ◆3、無(wú)法分離數(shù)據(jù)庫(kù)

    ◆4、用CREATE DATABASE DBName ON ( FILENAME = N'DBFile' ) FOR ATTACH_REBUILD_LOG附加數(shù)據(jù)庫(kù)時(shí)出現(xiàn)提示:The log cannot be rebuilt because the database was not cleanly shut down.

    詳細(xì)的恢復(fù)方法:

    1、停止數(shù)據(jù)庫(kù)服務(wù)。

    2、將需要恢復(fù)的數(shù)據(jù)庫(kù)文件復(fù)制到另外的位置。

    3、啟動(dòng)數(shù)據(jù)庫(kù)服務(wù)。

    4、確認(rèn)要恢復(fù)的數(shù)據(jù)庫(kù)文件已經(jīng)成功復(fù)制到另外的位置,然后在SQL Server Management Studio中刪除要恢復(fù)的數(shù)據(jù)庫(kù)。

    5、新建同名的數(shù)據(jù)庫(kù)(數(shù)據(jù)庫(kù)文件名也要相同)。

    6、停止數(shù)據(jù)庫(kù)服務(wù)。

    7、用第2步中備份的.mdf文件覆蓋新數(shù)據(jù)庫(kù)的同名文件。

    8、啟動(dòng)數(shù)據(jù)庫(kù)服務(wù)。

    9、運(yùn)行alter database dbname set emergency,將數(shù)據(jù)庫(kù)設(shè)置為emergency mode

    10、運(yùn)行下面的命令就可以恢復(fù)數(shù)據(jù)庫(kù):

    use master

    declare @databasename varchar(255)

    set @databasename='要恢復(fù)的數(shù)據(jù)庫(kù)名稱'

    exec sp_dboption @databasename, N'single', N'true' --將目標(biāo)數(shù)據(jù)庫(kù)置為單用戶狀態(tài)

    dbcc checkdb(@databasename,REPAIR_ALLOW_DATA_LOSS)

    dbcc checkdb(@databasename,REPAIR_REBUILD)

    exec sp_dboption @databasename, N'single', N'false'--將目標(biāo)數(shù)據(jù)庫(kù)置為多用戶狀態(tài)

    注:這個(gè)方法是通過(guò).mdf文件恢復(fù)數(shù)據(jù)庫(kù),即使大家的log文件丟失也可以進(jìn)行恢復(fù)。

關(guān)鍵詞標(biāo)簽:SQL Server 2005,日志

相關(guān)閱讀

文章評(píng)論
發(fā)表評(píng)論

熱門文章 SqlServer2005對(duì)現(xiàn)有數(shù)據(jù)進(jìn)行分區(qū)具體步驟SqlServer2005對(duì)現(xiàn)有數(shù)據(jù)進(jìn)行分區(qū)具體步驟sql server系統(tǒng)表?yè)p壞的解決方法sql server系統(tǒng)表?yè)p壞的解決方法MS-SQL2005服務(wù)器登錄名、角色、數(shù)據(jù)庫(kù)用戶MS-SQL2005服務(wù)器登錄名、角色、數(shù)據(jù)庫(kù)用戶Access、SQL Server、Oracle常見(jiàn)應(yīng)用的區(qū)別Access、SQL Server、Oracle常見(jiàn)應(yīng)用的區(qū)別

相關(guān)下載

人氣排行 如何遠(yuǎn)程備份(還原)SQL2000數(shù)據(jù)庫(kù)SQL2000數(shù)據(jù)庫(kù)遠(yuǎn)程導(dǎo)入(導(dǎo)出)數(shù)據(jù)配置和注冊(cè)O(shè)DBC數(shù)據(jù)源-odbc數(shù)據(jù)源配置教程SQL2000和SQL2005數(shù)據(jù)庫(kù)服務(wù)端口查看或修改SQL Server 2005降級(jí)到2000的正確操作步驟修改Sql Server唯一約束教程淺談JSP JDBC來(lái)連接SQL Server 2005的方法SQL Server創(chuàng)建表語(yǔ)句介紹