I have an MDF file and no LDF files for a database created in MS SQL Server 2005. When I try to attach the MDF file to a different SQL Server, I get the following error message.

The log cannot be rebuilt because there were open transactions/users when the database was shutdown, no checkpoint occurred to the database, or the database was read-only. This error could occur if the transaction log file was manually deleted or lost due to a hardware or environment failure.

I would like to accomplish any one of the following options:

  1. Attach the database without data loss (unlikely but would save me some time).
  2. Attach the database with data loss (whatever transactions were open are lost).
  3. Recover the schema only (no data) from the MDF file.

What SQL commands can I try to get my database going again?

link|improve this question

feedback

6 Answers

FROM a post at SQL Server Forums Attaching MDF without LDF:

If you want to attach a MDF without LDF you can follow the steps below It is tested and working fine

  1. Create a new database with the same name and same MDF and LDF files

  2. Stop sql server and rename the existing MDF to a new one and copy the original MDF to this location and delete the LDF files.

  3. Start SQL Server

  4. Now your database will be marked suspect 5. Update the sysdatabases to update to Emergency mode. This will not use LOG files in start up

Sp_configure "allow updates", 1 go Reconfigure with override GO Update sysdatabases set status = 32768 where name = "BadDbName" go Sp_configure "allow updates", 0 go Reconfigure with override GO

  1. Restart sql server. now the database will be in emergency mode

  2. Now execute the undocumented DBCC to create a log file

DBCC REBUILD_LOG(dbname,'c:\dbname.ldf') -- Undocumented step to create a new log file.

(replace the dbname and log file name based on ur requirement)

  1. Execute sp_resetstatus

  2. Restart SQL server and see the database is online.

UPDATE: DBCC REBUILD_LOG does not existing SQL2005 and above. This should work:

USE [master]
GO
CREATE DATABASE [Test] ON 
    (FILENAME = N'C:\MSSQL\Data\Test.mdf')
    FOR ATTACH_REBUILD_LOG
GO
link|improve this answer
I came across that article as well. DBCC REBUILD_LOG does not exist in SQL Server 2005. – Martin Apr 21 '09 at 15:18
Using the ATTACH_REBUILD_LOG flag yields the same error message as the original post. – Martin Apr 21 '09 at 15:48
feedback
up vote 6 down vote accepted

I found the following document on Experts Exchange.

patrikt: You will have data loss but it can be done.

1. Detach database and move your mdf to save location.
2. Create new databse of same name, same files, same file location and same file size.
3. Stop SQL server.
4. Swap mdf file of just created DB to your save one.
5. Start SQL. DB will go suspect.
6. ALTER DATABASE yourdb SET EMERGENCY
7. ALTER DATABASE yourdb SET SINGLE_USER
8. DBCC CHECKDB (yourdb, REPAIR_ALLOW_DATA_LOSS)
9. ALTER DATABASE yourdb SET MULTI_USER
10. ALTER DATABASE yourdb SET ONLINE
link|improve this answer
2  
The quality of this advice is increadibly bad. Whoever runs into this solution, just steer away. You'll end up like serverfault.com/questions/171145/… – Remus Rusanu Aug 16 '10 at 22:30
2  
Could you define exactly what is bad about this advice? The question clearly states that data loss is acceptable. – Martin Aug 17 '10 at 1:32
Saved my skin ... – tbikeev Oct 4 '10 at 15:17
feedback

have you tried to ignore the ldf and just attach the mdf:

sp_attach_single_file_db [ @dbname = ] 'dbname' , [ @physname = ] 'physical_name'

i don't know exactly what will happen to your open transactions (probably just lost), but it might get your data back online.

-don

link|improve this answer
This worked like a charm for me--everything else created errors. – dmb May 27 '10 at 18:59
feedback

See here : Rebuild master and restore system databases from complete disk failure which has a very nice explanation

link|improve this answer
feedback

Just had this problem myself, but none of the above answers worked for me.

But instead, I found this which worked a treat and so I thought I'd share this for everyone else:

http://www.kodyaz.com/articles/sql-server-attach-database-mdf-file.aspx

link|improve this answer
feedback

Found a another way that works completely:

  1. Create new database with same name to default database location.
  2. Stop SQL server.
  3. Copy old mdf file to overwrite newly created mdf file and delete new ldf file
  4. Start SQL Server, database will be in emergency mode
  5. Detach the emergency mode database
  6. Copy original ldf file to default database location (where new LDF file as created and deleted under step 3 above.
  7. Attach the database MDF file.

I got a working database after trying all of the above that failed for me.

Good luck, Folbaj

link|improve this answer
feedback

protected by Robert Harvey Feb 13 at 23:46

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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