I want to rename a database, but keep getting the error that 'couldnt 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?
|
1
|
I want to rename a database, but keep getting the error that 'couldnt 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?
|
|||
|
|
|
|
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' |
||
|
|
|
|
Why not take the database offline, then rename it, put back online. |
||
|
|
|
|
Script to accomplish this, replace 'DB_NAME' with the database to kill all connections to:
|
||
|
|
|
|
Using SQL Management Studio Express: In the Object Explorer tree drill down under Management to "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. |
||
|
|
|
|
Try this:
|
||
|
|
|
|
Adam the code you posted won't work because durin the time that you are looping over the active connections new ones can be connected and you will miss those. Take a look at the link I provided which has the following code
|
||
|
|
|
|
I've always used:
|
||
|
|
|
|
Hit the power button |
||
|
|
|
|
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. |
||
|
|