Hello everybody!
I’m working with sql database for couple months. Today I have opened it and see pop-up window: “The header for file 'xxxx.mdf' is not a valid database file header. The FILE SIZE property is incorrect.”
I don’t know what to do next, some ideas?
Thanks in advance!
0
Answers
The only other option is called "restore the latest backup". You do have one recent backup I hope?
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
No proper SQL backup sets available?
https://www.repairtoolbox.com/sqlserverrepair.html SQL Server Repair Toolbox
http://support.oreilly.com/oreilly/topics/it_seems_our_sql_database_is_corrupted?rfm=1
http://www.sqlservercentral.com/Forums/Topic1602448-266-1.aspx
Sometimes when you connect to your database server, you may find it in suspect mode. Your database server won’t allow you to perform any operation on that database until the database is repaired.
A database can go in suspect mode for many reasons like improper shutdown of the database server, corruption of the database files etc.
To get the exact reason of a database going into suspect mode can be found using the following query,
DBCC CHECKDB (‘YourDBname’) WITH NO_INFOMSGS, ALL_ERRORMSGS
Output of the above query will give the errors in the database.
To repair the database, run the following queries in Query Analyzer,
EXEC sp_resetstatus ‘yourDBname’;
ALTER DATABASE yourDBname SET EMERGENCY
DBCC checkdb(‘yourDBname’)
ALTER DATABASE yourDBname SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DBCC CheckDB (‘yourDBname’, REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE yourDBname SET MULTI_USER
And you are done.