Rohan Wiese
Member
Steps to Repair SQL Server Suspect Database Manually
Here are the two simple methods for SQL Server Suspect Database (MDF) Repair
Manual as well as third-party SQL Suspect Repair application to repair SQL Server Database Suspect error without any data loss.
How to Fix Recovery Pending State in SQL Server Database
Here are the two simple methods for SQL Server Suspect Database (MDF) Repair
Manual as well as third-party SQL Suspect Repair application to repair SQL Server Database Suspect error without any data loss.
- Browse SSMS (SQL Server Management Studio) and connect your Suspect SQL Server database
- Select the New Query option
- Turn off the suspect flag on the database and set it to EMERGENCY
- EXEC sp_resetstatus ‘db_name’;
- ALTER DATABASE db_name SET EMERGENCY
- Perform a consistency check on the master database
- DBCC CHECKDB (‘database_name’)
- Bring the database into the Single User mode and roll back the previous transactions
- ALTER DATABASE database_name SET SINGLE_USER WITH ROLLBACK IMMEDIATE
- Take a complete backup of the database
- Attempt the Database Repair allowing some data loss
- DBCC CHECKDB (‘database_name’, REPAIR_ALLOW_DATA_LOSS)
- Bring the database into the Multi-User mode
- ALTER DATABASE database_name SET MULTI_USER
- Refresh the database server and verify the connectivity of database
How to Fix Recovery Pending State in SQL Server Database