April 18, 2008 at 9:51 am
I am getting following error when restoring the db:
The database 'ABC' is marked RESTORING and is in a state that does not allow recovery to be run.
whats going on here?
April 18, 2008 at 10:03 am
SQL Server has encountered 8 occurrence(s) of cachestore flush for the 'Object Plans' cachestore (part of plan cache) due to some database maintenance or reconfigure operations.
SQL Server has encountered 8 occurrence(s) of cachestore flush for the 'SQL Plans' cachestore (part of plan cache) due to some database maintenance or reconfigure operations.
SQL Server has encountered 8 occurrence(s) of cachestore flush for the 'Bound Trees' cachestore (part of plan cache) due to some database maintenance or reconfigure operations.
April 18, 2008 at 11:11 am
- is that database configured "autoclose on" ?
- if yes, it needs a restore-step to be opened again.
(keep in mind SSMS doesn't autorefresh the object-browser pane)
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
April 18, 2008 at 12:32 pm
shahab (4/18/2008)
I am getting following error when restoring the db:The database 'ABC' is marked RESTORING and is in a state that does not allow recovery to be run.
whats going on here?
Run an alter database
alter database testdb
set recovery full
Now restart your restore again.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply