sql >> Base de Datos >  >> RDS >> Sqlserver

¿Cómo recuperar la base de datos de MDF en SQL Server 2005?

Encontré el siguiente documento en Experts Exchange .

patrikt:Perderá datos, pero se puede hacer.

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