Comments
2 comments
-
To bring the database out of a standby or read-only state into an operational state, you need to execute the following (substituting in <my_database> as appropriate)
RESTORE DATABASE <my_database> WITH RECOVERY
While this is part of the "RESTORE DATABASE" command, it will not perform any more restores, just bring the database online.
Hope that helps,
Jason -
Thanks. That worked.
Add comment
Please sign in to leave a comment.
Thanks in advance