|
|
| |

My database has been marked loading. How can I fix this?
Answer:
To resolve database load status, check the database was not created or altered with the FOR LOAD option.
If this option was specified, SQL Server ensures that only the database
owner can use the database.
Read about "Re-creating and Reloading Lost Databases" in SQL Server Books Online.
If the FOR LOAD option was not specified and the database cannot be loaded,
you should drop database by using the sp_dbremove stored procedure, and restore
the database from the backup.
|
|
|