February 2012
M T W T F S S
« Jan    
 12345
6789101112
13141516171819
20212223242526
272829  

Archive for the 'Uncategorized' Category

20
Oct

Kill all connections to a Database

declare @execSql varchar(1000), @databaseName varchar(100)
set @databaseName = ‘MSCS_CMX_STG’
set @execSql = ”
select @execSql = @execSql + ‘kill ‘ + convert(char(10), spid) + ‘ ‘
from master.dbo.sysprocesses
where db_name(dbid) = @databaseName
and
DBID <> 0
and
spid <> @@spid
exec(@execSql)