Database sql server 2008 is in suspect mode and I am not able to bring the database online and i have no backup to restore.
To resolve this issue run the commands listed below,
EXEC sp_resetstatus ‘DATABASE_NAME’;
ALTER DATABASE DATABASE_NAME SET EMERGENCY
DBCC checkdb(‘DATABASE_NAME’)
ALTER DATABASE DATABASE_NAME SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DBCC CheckDB (‘DATABASE_NAME’, REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE DATABASE_NAME SET MULTI_USER
But there will be data loss if i execute the above queries.
Is there any alternate solution for this?
Can anyone help me please.