SQL Server 2005 - closing sleeping connections - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T11:02:47Zhttp://stackoverflow.com/feeds/question/368039http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/368039/sql-server-2005-closing-sleeping-connections2SQL Server 2005 - closing sleeping connectionsdigiguru2008-12-15T11:08:23Z2009-03-20T21:28:57Z
<p>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?</p>
http://stackoverflow.com/questions/368039/sql-server-2005-closing-sleeping-connections/368047#3680473Answer by DrJokepu for SQL Server 2005 - closing sleeping connectionsDrJokepu2008-12-15T11:13:18Z2008-12-15T11:13:18Z<p>Other than killing your connections manually, you can</p>
<ul>
<li>Dispose of the connections. That is, retrieve the Connection objects somehow and call .Close and .Dispose() on them. Using "using" would be ideal since it calls .Dispose() automatically for you.</li>
<li>Recycle your application pool.</li>
</ul>
http://stackoverflow.com/questions/368039/sql-server-2005-closing-sleeping-connections/368052#3680522Answer by gbn for SQL Server 2005 - closing sleeping connectionsgbn2008-12-15T11:15:48Z2008-12-15T11:15:48Z<p>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.</p>
<p>Compare this to your desired sleep time and KILL spid.</p>
<p>You'll have to loop through.</p>
<pre><code>DECLARE @kill_id smallint
DECLARE spid_cursor CURSOR FOR
select spid from sysprocesses
where dbid = > 4 and last_batch < dateadd(hour, -24, getdate()) and spid >= 50
OPEN spid_cursor
FETCH NEXT FROM spid_cursor INTO @kill_id
WHILE (@@FETCH_STATUS = 0)
BEGIN
-- Kill the current spid here
-- KILL @kill_id <---This line will not work
-- Get the next cursor row
FETCH NEXT FROM spid_cursor INTO @kill_id
END
CLOSE spid_cursor
DEALLOCATE spid_cursor
</code></pre>
http://stackoverflow.com/questions/368039/sql-server-2005-closing-sleeping-connections/368179#3681794Answer by Thuglife for SQL Server 2005 - closing sleeping connectionsThuglife2008-12-15T12:13:06Z2008-12-15T12:13:06Z<p>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. </p>
<pre><code>SET NOCOUNT ON;
DECLARE @host VARCHAR(50), @login NVARCHAR(128);
SET @host = 'fooHost'; --NULL to kill sessions from all hosts.
SET @login = 'fooLogin';
DECLARE @cmd NVARCHAR(255);
DECLARE @possition INT, @total INT, @selSpid SMALLINT;
DECLARE @spidInfo TABLE
(
[id] INT IDENTITY(1,1),
spid SMALLINT,
loginame NVARCHAR(128)
);
INSERT @spidInfo(spid, loginame)
SELECT session_id, login_name
FROM sys.dm_exec_sessions
WHERE is_user_process = 1 AND [status] = 'sleeping' AND
login_name = @login AND [host_name] = COALESCE(@host, [host_name]);
SELECT @total = @@IDENTITY, @selSpid = 0, @possition = 0;
WHILE @possition < @total
BEGIN
SELECT TOP 1 @selSpid = spid, @possition = [id]
FROM @spidInfo
WHERE [ID] > @possition
SET @cmd = N'KILL ' + CAST(@selSpid AS NVARCHAR(10));
EXEC sp_executesql @cmd;
PRINT 'SessionId = ' + CAST(@selSpid AS NVARCHAR(10)) + '[' + @login +
'] killed by ' + system_user + ' at ' + CAST(GETDATE() AS VARCHAR(50));
END;
IF (@total = 0)
PRINT 'No sessions owned by user ' + '[' + @login + ']';
</code></pre>
http://stackoverflow.com/questions/368039/sql-server-2005-closing-sleeping-connections/668072#6680722Answer by Marc for SQL Server 2005 - closing sleeping connectionsMarc2009-03-20T21:28:57Z2009-03-20T21:28:57Z<p>First run this to find the offending database.....</p>
<pre><code>SELECT DB_NAME(dbid) as 'Database Name',
COUNT(dbid) as 'Total Connections'
FROM master.dbo.sysprocesses WITH (nolock)
WHERE dbid > 0
GROUP BY dbid
SELECT @@MAX_CONNECTIONS AS 'Max Allowed Connections'
</code></pre>
<p>Then run this to kill the connections to the desired DB</p>
<pre><code>USE master
go
DECLARE @dbname sysname
SET @dbname = 'Events'
DECLARE @spid int
SELECT @spid = min(spid) from master.dbo.sysprocesses where dbid = db_id(@dbname)
WHILE @spid IS NOT NULL
BEGIN
EXECUTE ('KILL ' + @spid)
SELECT @spid = min(spid) from master.dbo.sysprocesses where dbid = db_id(@dbname) AND spid > @spid
END
</code></pre>