SQL Server Database Stuck in Restoring State

By:   |   Updated: 2021-10-28   |   Comments (11)   |   Related: 1 | 2 | > Restore


Problem

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

object explorer
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.

Microsoft 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 file (*.bak file) and transaction log backup file (*.bak file) by running this T-SQL code in SQL Server Management Studio (SSMS).

BACKUP DATABASE [earnings] TO DISK = N'c:\sql\earnings.bak' 
WITH NOFORMAT, NOINIT, NAME = N'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 SQL Server backups, we will start the restoring process.

In order to restore the full and log backup we need to use the NORECOVERY 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.

object explorer

To finalize the restore and access the database we need to issue the restore command for 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 = N'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, NORECOVERY, 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.

database mirroringMirror16

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 Mirroring, 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 server 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.

log shipping status in SSMS 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.

object explorer

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:

USE master;
GO

ALTER DATABASE Database_name
SET SINGLE_USER
WITH ROLLBACK IMMEDIATE;

Then try the restore with recovery command again. 

Once restored, you can set to multiple user mode using the following T-SQL command:

USE master;
GO

ALTER DATABASE Database_name
SET MULTI_USER;
GO

Also, make sure you are on the latest service pack or cumulative update. There are several issues and patches related to recovery problems.

Here are some links with the service packs and cumulate updates:

Also, you will should review the Error Log and the Windows Event Viewer to check for errors.  Refer to these links:

PowerShell to have the SQL Server in status

SQL Server can be run in PowerShell scripts. You can restore your database in PowerShell using the Restore-SqlDatabase cmdlet. By default, the SQL Server module is not installed by default. In order to install the SQL Server module, you may need to run the following command:

Install-Module -Name SqlServer

Once installed the module, you can run the restore-sqldatabase cmdlet to restore a transaction log with the NORECOVERY option as follows:

Restore-SqlDatabase -ServerInstance "myComputerInstance" -Database "Adventureworks2019" 
-BackupFile "c:\backup\adwlog.trn" -RestoreAction Log -NoRecovery

The command line will restore the database in a NoRecovery mode. Then the backup will be in restoring status.

When the SQL Server recovery will finish?

In a big database, restoring a database could take a long time. Is there a way to estimate the time that the restoration will take?

Fortunately yes. You can check this information in the error log. We created an exclusive tip for you related to this scenario:

Where can I see the recovery status?

There is a system view used to see the recovery status. The name is sys.database_recovery_status. The view will show information about the database id, the last log backup lsn (log sequence number) and the fork point lsn which is related to the current recovery fork.

Conclusion

In this article, we saw different reasons why a database could be in a Restoring state. Hopefully this will be helpful the next time you are troubleshooting this issue.

Next Steps

If you have more questions, feel free to ask in the comments section below.

For more information refer to these links:



sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Daniel Calbimonte Daniel Calbimonte is a Microsoft SQL Server MVP, Microsoft Certified Trainer and 6-time Microsoft Certified IT Professional. Daniel started his career in 2001 and has worked with SQL Server 6.0 to 2022. Daniel is a DBA as well as specializes in Business Intelligence (SSIS, SSAS, SSRS) technologies.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips


Article Last Updated: 2021-10-28

Comments For This Article




Tuesday, May 23, 2023 - 1:58:09 PM - rashmi ashokan Back To Top (91219)
We see database in restoring state while restore triggered from commvault.There is no specific error from commvault , do we have any cummulative updates for 2019 servers

Monday, January 23, 2023 - 10:37:46 AM - Isidro Back To Top (90844)
Muchas Gracias

Tuesday, December 20, 2022 - 3:48:10 AM - jy Back To Top (90765)
Thank you so much

Friday, September 24, 2021 - 6:33:09 AM - Ashok Rao Back To Top (89260)
Is there an option to "Restore sql transaction log backups using the Powershell script"?

Monday, August 2, 2021 - 4:12:34 PM - Calin Back To Top (89086)
I usually don't comment, but this time I have to:
first of all, how can you tell if the database is still trying to recover or not? https://www.mssqltips.com/sqlservertip/2343/how-to-monitor-backup-and-restore-progress-in-sql-server/.
Once you are past that, please check your SQL Server Edition: Enterprise edition skips the rollback step (roll forward, roll back, bring online), which means the database will be online much faster as compared to Standard Edition (in my case it was around 2 hours for one database).
Lastly, we hit a nasty bug (twice already) with database mirroring, in which it would not come online (WITH RECOVERY) for the love of it. Microsoft has not yet been able to tell us why.
Hope this helps.

Monday, May 24, 2021 - 9:36:54 AM - Koos Van Niekerk Back To Top (88730)
It is all good and well when you get to 100% and it is stuck there, however, what do you do if it stops at 90% time after time you try and restore it?

Wednesday, May 19, 2021 - 6:56:00 AM - vac Back To Top (88707)
For me it is like this. During the test database restoring, there was not enough space and it entered the restoring mode. None of the commands help. I get the message "ALTER DATABASE is not permitted while a database is in the Restoring state. Msg 5069, Level 16, State 1, Line 6 ALTER DATABASE statement failed." The log file has 48GB and there is still not enough space. How to stop restoring without switching off the server?

Thursday, February 13, 2020 - 4:49:32 PM - Jonathan Brune Back To Top (84440)

Thanks, you saved my bacon.


Tuesday, November 5, 2019 - 8:35:33 AM - Sam Back To Top (82985)

Thanks, you are a life saver


Thursday, May 30, 2019 - 1:05:18 AM - GVV Vinay Back To Top (81254)

Thank you so much, it helped.


Tuesday, February 26, 2019 - 10:25:26 PM - Sureindran Nadesan Back To Top (79135)

If nothing works, restore with a empty db.















get free sql tips
agree to terms