I want to rename a database, but keep getting the error that 'couldn't get exclusive lock' on the database, which implies there is some connection(s) still active.
How can I kill all the connections to the database so that I can rename it?
|
I want to rename a database, but keep getting the error that 'couldn't get exclusive lock' on the database, which implies there is some connection(s) still active. How can I kill all the connections to the database so that I can rename it? |
||||
|
|
|
See Kill All Active Connections To A Database. The reason that the approach that Adam suggested won't work is that during the time that you are looping over the active connections new one can be established, and you'll miss those. The article I linked to uses the following approach which does not have this drawback:
|
|||||||||||
|
|
Script to accomplish this, replace 'DB_NAME' with the database to kill all connections to:
|
|||||||||
|
|
I've always used:
|
|||
|
|
|
Kill it, and kill it with fire:
|
|||
|
|
|
Using SQL Management Studio Express: In the Object Explorer tree drill down under Management to "Activity Monitor" (if you cannot find it there then right click on the database server and select "Activity Monitor"). Opening the Activity Monitor, you can view all process info. You should be able to find the locks for the database you're interested in and kill those locks, which will also kill the connection. You should be able to rename after that. |
|||||||
|
|
In MS SQL Server Management Studio on the object explorer, right click on the database. In the context menu that follows select 'Tasks -> Take Offline' |
|||||
|
|
I usually run into that error when I am trying to restore a database I usually just go to the top of the tree in Management Studio and right click and restart the database server (because it's on a development machine, this might not be ideal in production). This is close all database connections. |
|||
|
|
Another "kill it with fire" approach is to just restart the MSSQLSERVER service. I like to do stuff from the commandline. Pasting this exactly into CMD will do it: NET STOP MSSQLSERVER & NET START MSSQLSERVER Or open "services.msc" and find "SQL Server (MSSQLSERVER)" and right-click, select "restart". This will "for sure, for sure" kill ALL connections to ALL databases running on that instance. (I like this better than many approaches that change and change back the configuration on the server/database) |
|||||||||
|
|
||||
|
|
|
Try this:
|
|||
|
|
|
Right click on the database name, click on Property to get property window, Open the Options tab and change the "Restrict Access" property from Multi User to Single User. When you hit on OK button, it will prompt you to closes all open connection, select "Yes" and you are set to rename the database.... |
|||
|
|
|
Take offline takes a while and sometimes I experience some problems with that.. Most solid way in my opinion: Detach Right click DB -> Tasks -> Detach... check "Drop Connections" Ok Reattach Right click Databases -> Attach.. Add... -> select your database, and change the Attach As column to your desired database name. Ok |
|||
|
|
|
The option working for me in this scenario is as follows:
|
||||
|
|
|
I'm using SQL Server 2008 R2, my DB was already set for single user and there was a connection that restricted any action on the database. Thus the recommended SQLMenace's solution responded with error. Here is one that worked in my case. |
||||
|
|
|
Here's how to reliably this sort of thing in MS SQL Server Management Studio 2008 (may work for other versions too):
I agree, this is silly... but it's one of the few methods I've found actually works in the GUI for things like Microsoft Dynamics CRM. Databases eh? |
|||
|
|
use the 'master' database and run this query, it will kill all the active connections from your database. |
||||
|
|
|
These didn't work for me (SQL2008 Enterprise), I also couldn't see any running processes or users connected to the DB. Restarting the server (Right click on Sql Server in Management Studio and pick Restart) allowed me to restore the DB. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.