Teach you easy restore/repair SQL Server MDF files _mssql

Source: Internet
Author: User
Tags microsoft sql server sql server query mssql create database

First: If the database backed up has two files, respectively. LDF and. MDF, open Enterprise Manager, right-click on the instance---All Tasks-append database, then select that. MDF file, it's OK.

Or, in Query Analyzer, enter:

Copy Code code as follows:
sp_attach_db "Database name", "path \ filename. ldf", "path \ filename." MDF "


There are two ways to backup a SQL Server database, one is to back up the database files using Backup databases, and the other is to directly copy the database file MDF and log file LDF. The following is a major discussion of the latter's backup and recovery. This article assumes that you are proficient with SQL Server Enterprise Manager (SQL Server Enterprise Manager) and SQL Server Quwey Analyser (SQL Server Query Analyzer).

1. Normal backup, restore Mode 0

Normally, to back up a database, first disconnect the database from the running Data server, or deactivate the entire database server, and then copy the files.

To remove a database command: sp_detach_db database name

Copy Code code as follows:

command to connect to the database: sp_attach_db or sp_attach_single_file_db
s_attach_db [@dbname =] ' dbname ',
[@filename1 =] ' Filename_n ' [,... 16]
sp_attach_single_file_db [@dbname =]
' dbname ', [@physname =] ' physical_name '

You can use this method to correctly restore SQL Sever7.0 and SQL Server 2000 database files, which is important when backing up the MDF and LDF two files, the MDF file is the database data file, and the LDF is the database log file.

Example:

Suppose the database is test, its data file is Test_data.mdf, and the log file is test_log.ldf. Let's discuss how to back up and restore the database.

Copy Code code as follows:

Remove database: sp_detach_db ' test '
Connection database: sp_attach_db ' test ', '
C:\Program Files\Microsoft SQL Server\MSSQL
\data\test_data.mdf ', ' C:\Program Files
\microsoft SQL Server\mssql\data\test_log.ldf '
sp_attach_single_file_db ' Test ', '
C:\Program Files\Microsoft SQL Server\MSSQL
\data\test_data.mdf '

2. Only the MDF file recovery technology

For a variety of reasons, if we had just backed up the MDF file, it would be a hassle to recover.

If your MDF file is generated by the current database, then it is a fluke that you may use sp_attach_db or sp_attach_single_file_db to recover the database, but you will receive a hint similar to the following:

Device activation error.

Copy Code code as follows:

Physical filename ' C:\Program Files\Microsoft SQL Server
\mssql\data\test_log.ldf ' may be wrong.
Created named ' C:\Program Files\Microsoft SQL Server
\mssql\data\test_log. LDF ' new log file.

However, if your database files are replicated from other computers, unfortunately, perhaps the above approach will not work. You may receive an error message similar to the following:

Copy Code code as follows:

Server: Message 1813, Level 16, State 2, line 1
Server: Message 1813, Level 16, State 2, line 1 failed to open the new database ' test '. The CREATE DATABASE will terminate.
Device activation error. Physical filename ' D:\test_log. LDF ' may be wrong.

What to do? Take it easy, let's illustrate the recovery approach.

A. We use the default method to create a database (such as test) for recovery use. Can be built in SQL Server Enterprise Manager.

B. Deactivate the database server.

C. test_log.ldf the log file of the database that you just generated, overwriting the database data file that you just generated with the database MDF file you are restoring Test_data.mdf.

D. Start the database server. You will see that the state of the database test is suspect. No action can be made on this database at this time.

E. Setting up a database allows direct operating system tables. This action allows you to select the database server in SQL Server Enterprise Manager, right-click, select Properties, and select the Allow direct modifications to system directories on the server Settings page. You can also use the following statement to implement it.

F. Set test to Emergency Repair mode

Copy Code code as follows:

Update sysdatabases set status=-32768
where dbid=db_id (' test ')

You can see in SQL Server Enterprise Manager that the database is in "read only \ suspect \ offline \ Emergency mode" to see the tables inside the database, but only the system tables

G. Perform a real recovery operation to rebuild the database log file:

Copy Code code as follows:

DBCC REBUILD_LOG (' Test ', ' C:\Program Files\Microsoft
SQL Server\mssql\data\test_log.ldf ')

During execution, if you encounter the following prompt information:

Server: Message 5030, Level 16, State 1, line 1

Failed to lock the database to perform the operation.

DBCC execution completed. If DBCC prints an error message, contact your system administrator.

Indicates that your other program is using the database, and if you have just opened the system table of the test library using SQL Server Enterprise Manager in step F, then quit SQL Server Enterprise Manager.

The prompt for completion should resemble the following:

Warning: Log of database ' Test ' has been rebuilt. The consistency of the transaction has been lost. DBCC CHECKDB should be run to verify physical consistency. You will have to reset the database options, and you may need to delete the extra log files.

DBCC execution completed. If DBCC prints an error message, contact your system administrator.

When you open the SQL Server Enterprise Manager, you will see that the state of the database is "for dbo use only." You can now access the user table inside the database.

H. Verifying database Consistency (can be omitted)

DBCC CHECKDB (' test ')

The results of the general implementation are as follows:

CHECKDB found 0 allocation errors and 0 consistency errors (in the database ' test ').

DBCC execution completed. If DBCC prints an error message, contact your system administrator.

I. Set the database to a normal state

Copy Code code as follows:
sp_dboption ' test ', ' dbo use only ', ' false '

If there is no error, then congratulations, it is now normal to use the restored database.

J. In the final step, we will restore the "allow direct modifications to the system directory" set in step e.

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.