I seem to have an app on my Dev server that has lots of open connections (they should be there, but some bad data layer was used to open them, that forgot to close them). I just want them closed so I can keep other apps running on the server. How can I force all the connections to close?
|
2
|
|
|
|
|
|
Use the following script to kill inactive sessions from a specific host / login. You could use it from a scheduled job, of course your priority should be to fix your app tier.
|
||
|
|
|
|
First run this to find the offending database.....
Then run this to kill the connections to the desired DB
|
||
|
|
|
|
Use the last_batch column from sysprocesses to work out if it's really active or not. SPID > 50 (or is it >= 50?) to avoid killing system SPIDs. Compare this to your desired sleep time and KILL spid. You'll have to loop through.
|
||
|
|
|
|
Other than killing your connections manually, you can
|
||||||||
|
