Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: angelIIIPosted on 2003-05-27 at 07:17:12ID: 8590429
I assume that you want to kill all processes to a non-system database...
Try this:
declare @dbname sysname
declare @spid nit
declare @sql varchar(100)
set @spid = 0
while @spid IS NOT NULL
BEGIN
set @spid = NULL
select top 1 spid from master.dbo.sysprocesses where db_name(dbid) = @dbname
If @spidid IS NOT NULL
BEGIN
set @sql = 'kill ' + cast(@spid as varchar(10))
exec (@sql)
END
END
CHeers