Hello Experts,
My online database server got crashed. Fortunatly we recovered the *.mdf and *.ldf files from the crashed hard dick.
Now I want to restore the database from *.mdf and *.ldf files on new sql server.
I did below procedure to attache the database from *.mdf and *.ldf files.
I copied the *.mdf and *.ldf files into current sql server data folder and ran the below script.
============= use master exec sp_attach_db 'DB_NAME', 'C:\Program Files\Microsoft SQL Server\MSSQL\Data\DB_NAME.mdf', 'C:\Program Files\Microsoft SQL Server\MSSQL\Data\DB_NAME.ldf' =============
But i got below error message... ======================= Server: Msg 9004, Level 21, State 1, Line 1 An error occurred while processing the log for database 'DB_NAME'.
Connection Broken =======================
Could you please help me with this problem?
Regards, Thandava Krishna
|