I have seen this before. A 2000 restore fails, leaving the database thinking it is being restored but the restore job failed and errors when it is restarted. EM is clueless. I believe there is a proc to reset some flag. Can you share it with me?
Thanks!
sp_resetstatus|||I don't know if being marked "suspect" is the same as being marked as being restored. Is it?|||if you have backup files, then try to restore it from QA. the problem may be when you restore the data file and log file ; the datafile step may be success and the log file may not. untill unless it find WITH RECOVERy option the database status will be "restoring" . So what you do is , take the backup set and restore it with someother name using WITH Move option
Madhu
|||no. 'suspect' is not the same as 'restoring'. sp_resetstatus only handles 'suspect' status.To get out of restoring, you will need to recover the database. Try:
restore database <db> with recovery
No comments:
Post a Comment