Quantcast
Viewing all articles
Browse latest Browse all 3160

SQL Server Database Stuck in Restoring State

By: Daniel Calbimonte || Related Tips:More >Restore

Problem

My SQL Server database is in a restoring state. How does this happen and how can I access my SQL Server database?


Image may be NSFW.
Clik here to view.
SQL Server Database Stuck in Restoring State

Solution

In this article we will show reasons why a SQL Server database is in a restoring state and how you can get access to a database in a restoring state. It is not a very common problem, but when it happens it can be a big headache. In this article, we will see different reasons and possible solutions to solve this.

These steps will work for any version of SQL Server.

SQL Server database in RESTORING state after a restore

Usually, the restoring state happens when you are restoring a database. Here we will walk through an example of this.

I will create a full backup and log backup.

BACKUP DATABASE [earnings] TO DISK = N'c:\sql\earnings.bak'
WITH NOFORMAT, NOINIT, NAME = earnings-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10
GO
BACKUP LOG [earnings] TO DISK = N'C:\sql\earnings_LogBackup_2018-06-02_12-42-07.bak'
WITH NOFORMAT, NOINIT, NAME = N'earnings_LogBackup_2018-06-02_12-42-07', SKIP, NOREWIND, NOUNLOAD, STATS = 10

Once we have the backups, we will restore the backups.

In order to restore the full and log backup we need to use theNORECOVERY option for the full restore. So, if we just restore the full backup as follows:

RESTORE DATABASE [earnings]
FROM DISK = N'c:\sql\earnings.bak' WITH NORECOVERY, NOUNLOAD, STATS = 10

The database will now be in a restoring state. If we forget to restore additional backups, the database will be stuck in this mode.


Image may be NSFW.
Clik here to view.
SQL Server Database Stuck in Restoring State

To finalize the restore and access the database we need to restore the log backup as follows:

RESTORE LOG [earnings]
FROM DISK = N'c:\sql\earnings_LogBackup_2018-06-02_12-42-07.bak' SQL Server database in RESTORING state after doing backup log with NORECOVERY

Another reason your database can be in restoring state is when you backup the tail of the log using the NORECOVERY option as shown below.

BACKUP DATABASE [earnings] TO DISK = N'c:\sql\earnings.bak'
WITH NOFORMAT, NOINIT, NAME = earnings-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10
GO
BACKUP LOG [earnings] TO DISK = N'C:\sql\earnings_LogBackup_2018-06-02_12-42-07.bak'
WITH NOFORMAT, NOINIT, NAME = N'earnings_LogBackup_2018-06-02_12-42-07', SKIP, NOREWIND, NOUNLOAD, <strong>NORECOVERY</strong>, STATS = 10

This will cause the database to change to a restoring state.

To fix this you can restore the database backups as shown above.

Make a SQL Server database in RESTORING state accessible without restoring backups

If the database is stuck in the restoring state and you don't have additional backups to restore, you can recover the database using the following command:

RESTORE DATABASE [earnings] WITH RECOVERY

Once you issue this command, the database will be useable, but you won't be able to restore any additional backups for this database without starting all over again with the full backup.

For more details about restoring a database in a restoring state, refer to this article Recovering a database that is in the restoring state .

SQL Server database in RESTORING state for Database Mirroring

Another reason your database is in a restoring state is that it is part of SQL Server Database Mirroring . Database Mirroring is a solution that allows you to have high availability for your database. If there is a database failure on the primary database, the secondary replica database on a different server will take over the database operations. The main database is the Principal Server, the secondary is the Mirror Server and optionally you can have another Mirror Server.

Here is an example. We can see on the left that the Principal server is where the database is accessible. On the right we can see the Mirror that is in a Restoring state.


Image may be NSFW.
Clik here to view.
SQL Server Database Stuck in Restoring State

Image may be NSFW.
Clik here to view.
SQL Server Database Stuck in Restoring State

For more information about Database Mirroring in SQL Server, refer to this link: Configure SQL Server Database Mirroring Using SSMS .

In Database Mirroring, the Mirror Server is in Restoring state until a Failover is done. To access a SQL Server database that is in a restoring state when it is part of Database irroring, you can do a manual or automatic failover from the Principal to the Mirror.

To do an automatic failover, refer to the following link: Role Switching During a Database Mirroring Session (SQL Server) .

To break the mirror, you will need to select the database and go to the mirroring page and select the remove mirroring button. The following article shows how to do it. Once removed, the mirroring database will return to the normal state and you can backup and restore the database as a normal database.

SQL Server database in RESTORING state for Log Shipping

SQL Server Log Shipping allows to you to backup the transaction logs and send and restore the backups on a different server in order to have replicas of the database in case the primary servers fails.

Log Shipping puts the database in a Standby state with recovery or with no recovery. The no recovery mode will show the Log Shipping database in a Restoring state as shown below.


Image may be NSFW.
Clik here to view.
SQL Server Database Stuck in Restoring State

Here is a link to change the state to avoid the restoring state: Change the restore mode of a secondary SQL Server database in Log Shipping with SSMS .

SQL Server database stuck in RESTORING state after restarting the machine

Sometimes the database is in a restoring state after restarting the machine or for some other reason. It usually happens with big databases when a long transaction is in progress and an unexpected server shutdown or restart occurs.


Image may be NSFW.
Clik here to view.
SQL Server Database Stuck in Restoring State

If you have this problem, try this first:

RESTORE DATABASE [databasename] WITH RECOVERY

If you receive an error that the database is in use, try to set the user to single user mode:


Viewing all articles
Browse latest Browse all 3160

Trending Articles