sqlserver2012 database differential backup recovery record

sqlserver2012 recovery process:

First restore the full backup, then restore the difference, note: check the NoRecovery option.

 

After the restore is complete, the following appears:

 

The Sqlserver database keeps showing a status of "Restoring...".

Reference: Reason Analysis of http://www.php230.com/1413283921.html

1) The manager will not refresh actively, you need to refresh it manually to see the latest status (performance considerations)

2) Rarely, the recovery process is suspended. At this point, assuming you want to restore and return to an accessible state, execute: 

 code show as below copy code

RESTORE database   dbname with recovery

This allows the recovery process to end completely.

3) If you want to continuously restore the subsequent log files, you really need to keep the database in the "restored state",

This is usually done by executing the following command: 

 code show as below copy code

RESTORE database dbname with norecovery

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325023868&siteId=291194637