Viewing 2 posts - 1 through 2 (of 2 total)
When ever you find that the data base is in suspect mode use the below script.
Exec Sp_resetstatus ‘Yourdbname’
Alter database yourdbname set emergency
Dbcc checkdb(yourdbname)
Alter database yourdbname set single_user with rollback immediate
Dbcc...
April 10, 2010 at 4:21 am
#1149542
Hi dude when the transactions will happens automatically the log size will grow,so on the time there is an option to shrink the log file,below are the command executed in...
April 9, 2010 at 3:36 am
#1148902