SQL Server 200R2 database corruption repair Script

Source: Internet
Author: User

Start by creating a new SQL Server 2008r2 database, overwriting the newly created database with a corrupted database, and then restarting the database service, executing the script in turn.

Use master--Çeku

--1. Emergency mode for database

ALTER DATABASE database-name SET emergency--database-name is the name

Go

--2. The database is single-user mode

ALTER DATABASE Database-name set Single_user with rollback immediate

Go

--3. Rebuilding a database log file

ALTER database Database-name Rebuild Log on

(name=dbname_log,filename= ' Database-name-log-path ')--database-name-log-path database log file

Go

--4. Checking the Repair Database

--DBCC checkdb (@database-name,repair_allow_data_loss)

--DBCC checkdb (@database-name,repair_rebuild)

--5. Finally, set the database to multi-user mode.

ALTER DATABASE Database-name set Multi_user

SQL Server 200R2 database corruption repair Script

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.