Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

How to restore database MSSQL 2005 SP4? 2

Status
Not open for further replies.

alainmarion85

Industrial
Jul 22, 2015
2
0
0
FR
How to restore base after RAID crash? I hoped to restore using Backup, but very late noticed that the Backup was not done. Now how do I restore the database on MSSQL 2005 SP4, which is marked with Suspend?
 
Replies continue below

Recommended for you

Use master
go
sp_configure 'allow updates', 1
go
---Execute---
reconfigure with override
---Execute---
select status from sysdatabases where name = 'DataBaseName'
---Execute---
EXEC sp_resetstatus 'DataBaseName';
ALTER DATABASE DataBaseName SET EMERGENCY
---Execute---
alter database DataBaseName set EMERGENCY, SINGLE_USER
---Execute---
dbcc checkdb ('DataBaseName', REPAIR_ALLOW_DATA_LOSS)
---Execute---
alter database DataBaseName set ONLINE, MULTI_USER
---Execute---
Use master
go
sp_configure 'allow updates', 0
go
---Execute---
reconfigure with override
P. S. If in the end "dbcc checkdb" to swear on something that can't create log file then create the folder that it asks for and repeat the operation with this item again (if the base stood in other place earlier).
In that case, if this way cannot restore a database, then use the Recovery Toolbox for SQL Server. It often helped out me.
It is possible to found additional councils and recommendations on this resource
 
Status
Not open for further replies.
Back
Top