Search This Blog

Loading...

Thursday, April 26, 2012

Recovering SQL Server Database From Suspect Mode

Follow below steps to recover database from suspect mode:

  1. ALTER DATABASE [database_name] SET EMERGENCY 
  2. DBCC checkdb('database_name') 
  3. ALTER DATABASE [database_name] SET SINGLE_USER WITH ROLLBACK IMMEDIATE 
  4. DBCC CheckDB ('database_name', REPAIR_ALLOW_DATA_LOSS)
  5. ALTER DATABASE [database_name SET MULTI_USER

If it does not work for you, then go for thrid party tool or restore database from available backups.

4 comments:

Raj said...

Stellar SQL server database recovery is the most recommended tool by Expert database administrator for repairing suspect SQL server database. It is a Microsoft gold certified partner's product and supports recovery of SQL server 2012, R2, 2008, 2005, 2000, & 7.0.

james franklin said...
This comment has been removed by the author.
james franklin said...

repair sql database damaged .mdf files after using unstable software, hard drive fails, system errors
Utility restores tables, procedures and etc. items.

Anonymous said...

Thx!