We use cookies on this website. By using this site, you agree that we may store and access cookies on your device Read More Got it!
Database Recovery 5 minute read

How to fix Recovery Pending State in SQL Server Database?

Charanjeet Kaur
Written By
Charanjeet Kaur
Kuljeet Singh
Approved By
Kuljeet Singh
stellar calander
Updated on
January 23rd, 2023

Summary: This post will outline the reasons why a database (db) is marked in recovery pending state. Also, it will describe methods to fix ‘SQL server database in recovery pending state’ problem. You can resolve the problem by executing queries in SQL Server Management Studio (SSMS), or by using Stellar Repair for MS SQL software.

Free Download for Windows

Contents

  • SQL Server Database States
  • Reasons behind Recovery Pending State in SQL Server
  • Methods to Fix Recovery Pending in SQL Server Database Issue
  • Conclusion

SQL Server Database States

A SQL database is considered to be damaged if one or more of its core files are in an inconsistent state. Depending on how severe the damage is, the db is marked with different states. Some of these states are:

  • Online – If one of the data files is damaged when executing a query or some other operation, the database will remain online and accessible.
  • Suspect – If a database cannot be recovered during startup of SQL Server, the database is marked as Suspect.
  • Recovery Pending – If the SQL Server knows that database recovery needs to be run but something is preventing it from starting, the Server marks the db in ‘Recovery Pending’ state. This is different from the SUSPECT state because it cannot be said that recovery is going to fail – it just hasn’t started yet.
Recovery Pending State in SQL Server
Figure 1- Database marked in ‘Recovery Pending’ state

Let’s first understand how you can check the current state of the database.  

How to Check Database State?

 To check the current state of an SQL db, run the following query:

SELECT name, state_desc from sys.databases 
GO

Executing the query will give you an output that looks something like:

Different Database States
Figure 2- Database States

Reasons behind Recovery Pending State in SQL Server

Some of the reasons causing such an issue are:

  • The database didn’t shut down properly and there is at least one uncommitted transaction active during the shutdown, resulting in deletion of the active transaction log file.
  • User tried moving the log files to a new drive to overcome server performance issues but ended up corrupting the log files in the process.
  • Database Recovery cannot be initiated due to insufficient memory space or disk storage.

Methods to Fix Recovery Pending in SQL Server Database Issue

Note: Before initiating any of the following repair procedures, make sure to take db backup, so as to have a fail-safe copy in case anything goes wrong.

Method 1 – Manual Ways to Resolve the Database in Pending State

Following are the two manual ways that helps bring SQL database in recovery mode to normal mode:

1. Mark Database in Emergency Mode and Initiate Forceful Repair

Database EMERGENCY mode marks the database as READ_ONLY, disables logging, and grants access only to system administrators. Essentially, setting the db in this mode can bring the inaccessible database online. 

Note: Usually a database comes out of EMERGENCY mode automatically. If you are having issues restoring the db from this mode, read this Recover SQL Database from Emergency Mode to Normal Mode.

Once you have opened the db in EMERGENCY mode, try repairing the database using the DBCC CHECKDB command with the ‘REPAIR_ALLOW_DATA_LOSS’ option. To do so, open SSMS and execute the following set of queries:

ALTER DATABASE [DBName] SET EMERGENCY;
GO
ALTER DATABASE [DBName] set single_user
GO
DBCC CHECKDB ([DBName], REPAIR_ALLOW_DATA_LOSS) WITH ALL_ERRORMSGS;
GO
ALTER DATABASE [DBName] set multi_user
GO

2. Mark Database in Emergency Mode, Detach the Main Database and Re-attach It

This solution also requires to mark db in EMERGENCY mode. Once done, take the database offline (detach) and then bring it online (re-attach). To do so, execute the following set of queries in SSMS:

ALTER DATABASE [DBName] SET EMERGENCY;
ALTER DATABASE [DBName] set multi_user
EXEC sp_detach_db ‘[DBName]’
EXEC sp_attach_single_file_db @DBName = ‘[DBName]’, @physname = N'[mdf path]’

The above set of queries help make the server get rid of the corrupt log and build a new one automatically.

Method 2 – Use Stellar Repair for MS SQL Software

If the above methods cannot help resolve the db in recovery pending state issue, use Stellar Repair for MS SQL software. The software can help you repair corrupt database files and bring the database back online from recovery pending state quickly and smoothly.

free download

Steps to Use Stellar Repair for MS SQL Software

  • Download, install and Run Stellar Repair for MS SQL software.
  • From Select Database window, click Browse or Search to select the database file you want to repair. 
Browse Corrupt MDF file
Figure 3 – Select Database File
  • Software provides Standard Scan and Advanced Scan option to scan the corrupt database.
Scanning corrupt MDF file by Standard scan option
Figure 4 – Scan Mode
  • Click Repair to start the repair process.
  • The software shows preview of all the recoverable db components.
Preview of repaired MSSQL Database items .
Figure 5: Preview of the database objects
  • To save the repaired file and its components, click Save on File menu. 
Saving option to save repaired SQL database
Figure 6: Save option
  • From the Save Database window, do the following:
  1. Choose MDF under Save As.
  2. Select New Database or Live Database under Saving Option.
  3. Enter the required details in the Connect to Server section by Authentication or SQL Server Authentication.
Save as MDF file to New SQL Database Via connection to server by SQL Server Authentication or Windows Authentication
Figure 7: Authentication options for connectivity
  • Click Browse to choose the destination for saving the repaired file.
Save as MDF file into new database via Authentication SQL Server Authentication
Figure 8 – File Saving Options
  • Click Save.
  • When the ‘Save Complete’ message box appears, click OK.
Repaired SQL database Saved Successfully
Figure 9 – Save Complete Window

The repaired file will get saved in the selected location.

Note: For detailed information about using Stellar Repair for MS SQL software, refer to this user guide.

Key Features of Stellar Repair for MS SQL

  • Repairs corrupt and inaccessible MS SQL Database (.mdf and .ndf) files.
  • Recovers all database components like tables, keys, indexes, triggers, rules, and stored procedures, etc.
  • Recovers deleted records.
  • Supports MS SQL 2019, 2017, 2016, 2014, 2012, 2008, 2008 R2 and all lower versions.
  • The software is trusted by Microsoft MVPs.

Conclusion

This post outlined reasons behind ‘db in recovery pending state’ issue like database is not cleanly shut down, database files (.mdf or .ndf) turned corrupt, insufficient memory or disk space. It also described methods to fix Recovery Pending State in SQL Server Database.

You can fix the database by setting it to emergency state, and initiating the repair process or de-attaching and reattaching the db. But, such solutions have their own downsides:

  • It can only resolve minor database issues.
  • It does not ensure complete recovery of the database.
  • It involves data loss risk, particularly, running ‘REPAIR_ALLOW_DATA_LOSS’ command can delete some data.

You can overcome these limitations by using Stellar Repair for MS SQL software. The software helps SQL users and database administrators (DBAs) to fix severe database corruption errors. Also, it ensures complete recovery of db components, while preserving data integrity.

About The Author

Charanjeet

Charanjeet is a Technical Content Writer at Stellar®who specializes in writing about databases, e-mail recovery, and e-mail migration solutions. She loves researching and developing content that helps database administrators, organizations and novices to fix multiple problems related to MS SQL and MySQL databases and Microsoft Exchange.

Best Selling Products

Stellar Repair for MS SQL

Stellar Repair for MS SQL

Stellar Repair for MS SQL is an enterpri

Read More
Stellar Toolkit for MS SQL

Stellar Toolkit for MS SQL

3-in-1 software package, recommended by

Read More
Stellar Converter for Database

Stellar Converter for Database

Stellar Converter for Database is an eff

Read More
Stellar Repair for Access

Stellar Repair for Access

Powerful tool, widely trusted by users &

Read More

28 comments

  1. Jacob says:
    May 13, 2022 at 9:34 pm

    A million thanks!!!!

    Reply
  2. Kevin James says:
    June 13, 2020 at 7:50 am

    Nice, #1 did the trick for me. Cheers!

    Reply
  3. Nick Smith says:
    March 23, 2019 at 5:00 am

    I have decided to give up manual procedures. Now, I will move on a third party solution to check the feasibility of SQL database recovery in minimal time using a free demo.

    Reply
    1. Eric Simson says:
      March 24, 2019 at 5:12 am

      If you face any trouble, then contact our tech support team immediately.

      Reply
  4. Calvin says:
    January 31, 2019 at 8:25 am

    Our team was struggling since the last Friday. But, yesterday I got the reference of this guide from a SQL MVP. Really, you guys helped us to get relief from a panic SQL server error.

    Reply
  5. Hans says:
    January 20, 2019 at 10:16 am

    Thanks, just did the trick.

    Reply
  6. Waleed Elbahr says:
    December 4, 2018 at 9:13 am

    Hi,

    I keep getting this error “Invalid database version. Select appropriate database version”, I tried every choice in the wizard with no luck.

    I user SQL 2012, I am not sure if it is converted from another version or not, however, I don’t think this is the problem.

    In SQL management studio I got “Recovery Pending”, I tried to “emergency” the database, but it returns I/O error.

    Thanks in advance

    Reply
    1. Eric Simson says:
      December 5, 2018 at 8:19 am

      If you have tried all manual troubleshooting tips but the problem still exists, then try free demo of Stellar Repair for MS SQL.

      Reply
  7. Alfredo P. says:
    September 23, 2018 at 4:12 pm

    Hi,

    I got this error after running Windows updates and rebooting the server. What I did wrong in order to have this error?

    Should I end something before rebooting the server?

    Thanks.

    Reply
    1. Eric Simson says:
      September 24, 2018 at 4:35 am

      Sometimes, running background service can interrupt or clash with running SQL server instances.

      Reply

Comments navigation

Older comments Page 1 Page 2

Leave a comment Cancel reply

Your email address will not be published. Required fields are marked *

Image Captcha
Refresh Image Captcha

Enter Captcha Here :

Table of Contents    arrow

  1. SQL Server Database States
  2. Reasons behind Recovery Pending State in SQL Server
  3. Methods to Fix Recovery Pending in SQL Server Database Issue
  4. Conclusion

Categories

Related Posts

related post
Database Recovery

[Fixed]: Database cannot be Opened. It is in the Middle of a Restore

Stellar Author Bharat Bhushan February 6, 2023 Read More
related post
Database Recovery

How to Fix SQL Attach Database Error 9004?

Stellar Author Bharat Bhushan February 3, 2023 Read More
related post
Database Recovery

How to Rebuild and Restore Master Database in SQL Server?

Stellar Author Bharat Bhushan February 2, 2023 Read More

Free Trial for 60 Days

Technology You Can Trust A Brand Present Across The Globe

Stellar Official Website

Stellar Data Recovery Inc.
48 Bridge Street Metuchen,
New Jersey 08840,
United States

ALSO AVAILABLE AT

ALSO AVAILABLE AT

About

  • About us
  • Career
  • ISMS Policy
  • Privacy Policy
  • Terms of Use
  • License Policy
  • Refund Policy
  • End User License Agreement

RESOURCES

  • Blog
  • Articles
  • Product Videos
  • Knowledge Base
  • Case Studies
  • Whitepapers
  • Software Catalog

NEWS & EVENTS

  • News
  • Events

PARTNERS

  • Affiliates
  • Resellers
  • Distributors

Useful Links

  • Contact Us
  • Support
  • Special Offers
  • Student Discounts
  • Awards & Reviews
  • Downloads
  • Store
  • Sitemap

Stellar & Stellar Data Recovery are Registered Trademarks of Stellar Information Technology Pvt. Ltd. © Copyright 2023 Stellar Information Technology Pvt. Ltd. All Trademarks Acknowledged.

Follow Us Facebook Twitter Linkedin Youtube