Processing of MS SQL Server 2008 databases in suspect cases

Source: Internet
Author: User

Back up the . mdf,. ndf, and . ldf files before you do any recovery operations.

Use master

Go

--Set the database in the suspect state to a state of emergency

ALTER DATABASE <DatabaseName> SET emergency

Go

--Set the database as a single user immediate rollback mode

ALTER DATABASE <DatabaseName> set Single_user with rollback immediate

Go

Use <DatabaseName>

Go

-Rebuild the log file, note to delete the old LDF file first, the log file to give the full path

ALTER DATABASE <DatabaseName> Rebuild Log on (name=<databasename>,filename= ' C:\sql\logs\<databasename >_log. LDF ')

Go

--Perform database checks and execute multiple times

DBCC CHECKDB (' <DatabaseName> ', Repair_allow_data_loss)

Go

--Set to multi-user mode

ALTER DATABASE <DatabaseName> set Multi_user

Go


Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Processing of MS SQL Server 2008 databases in suspect cases

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.