............ Have a nice day............
USER MENU ID IS UNDEFINED IN FINACLE MIS SERVER   Date of Implementation of "VERY GOOD" Bench Mark for MACPs effect from 25.07.2016   Expected DA from Jan 2017 – 3% or 2% ?    One minute talk time for each Rupee in Airtel Payments Bank   AICPIN for October 2016 : Chances for 5% DA from January 2017   Central Government employees retiring from January 2017 to submit online application   Pre-Budget Views of Govt. Employees for inclusion in the Budget for the Year 2017-18: Confederation i.e. Scrap NPS, Minimum Wage Rs. 26,000 & Fitment Formula etc   On Salary Week, Banks Unlikely to Meet Demand for Extra 1 Lakh Cr   82 per cent ATMs dry because government used that money to pay its own employees   National Anthem Before Movie, Rules Supreme Court. Citizens 'Duty-Bound' To Show Respect    undefined

Saturday, 18 May 2013

How to resolve 'database is in use' error while restoring SQL Server database



Have your SQL Database Restoration get failed with a message saying the 'database is in use'.  This error occurs when any other users are connected to the database then the restore get failed & shows following error message: 

Msg 3101, Level 16, State 1, Line 1
Exclusive access could not be obtained because the database is in use.
Msg 3013, Level 16, State 1, Line 1
RESTORE DATABASE is terminating abnormally.

To resolve this issue, you need to drop all other connections or the database that user are using should to be changed so that they will not use that database that you are going to restore.  You can use sp_who2 or SSMS to see what connections are using the database. 


To resolve this issue:

1. Put the database in single-user mode 

In SQL Server 2005 you do this by right clicking on the database - > properties and changing the relative attribute from multiuser to single user. After performing restore operation set again it to multiuser.  

Or you can also use this TSQL command:

use master
alter database xyz set single_user with rollback immediate
restore database xyz ...
alter database xyz set multi_user

2. Set your database offline:

If it is Still giving same error message after keeping database in single_user mode then you should just set it offline before running the restore option. This is the easiest way to kill all connections to the SQL Server database: 

use master
alter database MyDatabase set offline with rollback immediate

After that you can successfully restore your SQL Server Data base & all authenticated SQL Server database users can connect to the database again. 

No comments:

Post a Comment