vote up 3 vote down star

Can somebody in this forum recommend a tool/procedure to repair or recover a corrupt SQL Server 2000 database file?

flag

37% accept rate

2 Answers

vote up 0 vote down

The best articles I've seen for repairing database corruption are:

link|flag
vote up 1 vote down

Can you attach the database (it may take a while)? Do you have both the MDF and LDF? Any errors in Event Log or SQL Server logs?

You can create an empty log file if the LDF is missing or corrupt, or run DBCC CHECKDB, and if there are still errors, run it again with REPAIR_ALLOW_DATA_LOSS (which, obviously, may lose data - but if you had a good backup, you probably wouldn't be asking this).

Obviously, these are last resort measures - you will almost certainly lose data this way. If your data has any value whatsoever, pick up the phone and spend the $249 to talk to MS Product Support.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.