
Sometimes you are trying to restore a sql server database and you'll get the error:
"Exclusive access could not be obtained because the database is in use."
The Solution is type the script below and run it (SQL Query) :
Before Restore Attempt
use master
alter database DB_NAME set offline with rollback immediate;
After Restore
use master
alter database DB_NAME set online with rollback immediate; ...