How to Recover MSSQL from "Suspect Mode" / "Emergency Mode" / "Error 1813"

This article describes the course of actions you should take

  1. if your database somehow got "suspect mode" or "emergency mode";
  2. if you receive the error 1813 on attaching database

The History Behind 

I've been developing under SQL 7 for a while. Sometimes transaction log grew too large. My usual fix for that problem was:

  1. stop the server (on the development machine we do not need any logs), 
  2. delete transaction log
  3. start the server again
  4. after that the server was creating empty 1MB transaction log from scratch

I had been using this technique a lot of times under SQL 7, until sometime I have migrated to MSSQL 2000...

After my transaction log grew too large, I stopped the server, deleted the log file and started the server once again. However this time it did not worked: my database got "suspect". I was not able to read or write from the database. A week of work seemed to be lost... Ouch!...

Screenshot of 'pubs' database in suspect mode

I searched the newsgroups - a lot of people were facing the same problem and nobody knew the solution. All I found was the article: http://support.microsoft.com/support/kb/articles/q251/6/28.asp. I have tried that and revealed information in the article applies only to SQL 7 and does not to SQL 2000...

Did I solved the problem? Read on!

"Suspect Mode" --> "Emergency Mode"

Open Enterprise Manager,

  1. Right click onto your server node, - an SQL Server Properties dialog will popup,
  2. Enable "Allow modifications to be made directly to the system catalogs" option
    Screenshot of Enterprise Manager/SQL Server Properties/Allow modifications to be made directly to the system catalogs
  3. Now proceed to the sysdatabases table in the master database, locate your database row and put 32768 into its status column
    Screenshot of master/sysdatabases/32768 in 'status' column of 'pubs' database
  4. Restart SQL Server and refresh Enterprise Manager

Open Enterprise Manager - the database will be marked as "Emergency Mode"

Screenshot of 'pubs' database in emergency mode

These articles explain the trick behind suspect and emergency mode:
http://support.microsoft.com/support/kb/articles/Q165/9/18.ASP
http://www.swynk.com/friends/knight/unmarksuspect.asp
http://support.microsoft.com/support/kb/articles/Q180/5/00.asp

"Emergency Mode" --> "Normal Mode"

Now your database is in "emergency mode". Disregard Enterprise Manager does not show tables, views and procedures - use Query Analyzer's Object Browser instead.

"Emergency mode" means database is locked against any modifications, it is readonly forever. There is no way to bring "emergency" database back to normal state. All we can do is copy all data from it into new database.

  1. Create new database (pubz)
    Screenshot of new 'pubz' database next to old 'pubs' database in emergency mode
  2. Create new DTS package
  3. Use "Copy SQL Objects" task to transfer data from old database to new database (pubs->pubz)
    Screenshot of Copy SQL Server Obbjects DTS task
  4. Execute the DTS job & enjoy!

Note that there might be complex dependencies between database objects, so Copy SQL Objects task might not work properly. For example: view A is dependent on view Z; Copy SQL Objects task will try to create view A first, -- that will fail, because view Z does not exist yet.

"Error 1813" --> "Suspect Mode"

If you receive "Error 1813", this probably means that you are trying to attach database you have improperly detached, or haven't detached at all. Only successfully detached databases can be successfully attached back.

Screenshot of Error 1813

  1. Create new database using the same name and file location as database that is failing to attach
  2. Stop SQL Server
  3. Copy non-attachable data files over the new ones
  4. Delete log files
  5. Start SQL Server

Open Enterprise Manager - the database will be marked as "suspect"

Screenshot of 'pubs' database in suspect mode

Once your database is "suspect", use instructions outlined above...

Note that database will be marked "suspect" only if transaction log contained active sections. To illustrate the problem for 100%, run a few inserts against the database before deleting transaction log.

Comments

You just saved me countless

You just saved me countless hours of work! THANKS!

Good

Good

I am trying to recover

I am trying to recover stored procedures and table definitions from a development database. I don't care about the data.

I have a back-up that is nearly three years old; I was thinking of recovering scripts for the object definitions and then re-applying them to the backed-up database. But Query Analyzer's object browser does not show me the dates of object creation. How will I identify which objects have changed if I cannot view them in Enterprise Manager?

Or should I simply rename or drop the EMERGENCY MODE database and then rename my new database to the old name? (Can a database in EMERGENCY MODE be renamed?) I don't want to lose the EMERGENCY MODE database -- just in case a dependency prevented an object from being copied by my DTS package.

Hi there, Just wanted to

Hi there,

Just wanted to remark that the info on your page did lead to a resolution for the problem, but in this case your 'endloesung' would have meant rewriting and distributing software with hardcoded routines, etc.

the following SQL script will restore the '0' or normal state on the database

use master

update sysdatabases set status = 0
where name like '<databaseinrecmodename>'

Great information. You were

Great information. You were an immense help in solving my problem!

Good keep it up good its

Good keep it up good its given a perfect solution for me

Thanks so much for this. It

Thanks so much for this. It probably saved my job!!!

great work

for two days i've been researching this issue and your post is the best so far.. thx

Database Suspect

Great information

Thanks very much

it worked! thx a bundle!

it worked! thx a bundle!

Suspect mode

Dear ,
plz help me to recover a mdf data from suspect / emergency mode
I m using sql 2000 i dont hv any backup
i m not able to recollect data
so plz help me to same

Thanks & Regards ,
Vipin jha
vipin_jha123@yahoo.co.in

Answer the mail or write to

Answer the mail or write to andriy.gerasika@gerixsoft.com

it worked!

Thanks for this post!!! I followed it and worked very well!!

thanksssssssssssssss

thanksssssssssssssss

foreign keys?

Is there a way around the foreign key restriction problem you described at the end? If I could just make sql not check for foriegn keys while I do this, I think that would do it.

You can try "script database"

You can try "script database" task, or

use master
update sysdatabases set status = 0
where name like '<databaseinrecmodename>'

from one of the comments above

MSSQL "suspect Mode"

Hello everybody,

the information <recovering MSSQL from 'suspect Mode'>
helps us to restore a important database. So, we saved a lot of money.
2039 tables of 2400 were rescued with the complete data.
We want to say, thank your for it. Thank you very much.

In that case a donation is normal. Please tell us your bank account...

nice regards

Marc

Thanks :) As a donation, you

Thanks :) As a donation, you may purchase IndieVolume license from http://www.indievolume.com

recovering emergence mode

its not working for me

what exactly step is not

what exactly step is not working? Is it MSSQL 2000 or are you trying to recover >=MSSQL 2005?

DB in Emergence/Recovery mode

This is what the error im getting when i try to runn any query

Server: Msg 5180, Level 22, State 1, Line 1
Could not open FCB for invalid file ID 0 in database 'DBNAME'.

Connection Broken

Please help in this regard

Do you have transaction log?

Do you have transaction log? Try to delete it

data copy faild

Hi dear
when I create DTS and wanted to copy data from corrupted database to new one , i got the error that mean it can't copy data because
[Microsoft][ODBC SQL Server Driver][SQL Server]'iranet.net\r_rostamy' is not a valid name because it contains invalid characters... i used windows authentication ..and from remote desktop did it. I always use windows authentication and my database doesn't have SQL server pass.... would you help me with this issue please? I'm struggleing this problem for days..... :-(

thank you in advanced
Ramin

I guess it is because of dot

I guess it is because of dot "." in domain name: iranet.net

try using regular MSSQL authentication

thank you so much

I just wanted tom say thank you buddy...your solution was so useful be welllllllllllllllllllllllllllllllllllll :-*

more

sorry, i did it local (i mean not from remote desktop) but it got that error again....
thank you

thanks

Thanks .

Your methods saved my hours.

I don't know waht to say

Thank you very much...........
Very nice Site.

you're the best

you save my client 7 year old database, its very important for my client, it was with sql server 7.0, I almost lose hope and I pray that God will help me via other people, and that is YOU. You're the best, thank you very much. God Bless.

Post new comment

The content of this field is kept private and will not be shown publicly.