Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
KILL command
Message
From
23/07/2003 17:15:32
 
 
To
All
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
KILL command
Miscellaneous
Thread ID:
00812948
Message ID:
00812948
Views:
44
I'm trying to kill all connections to a certain database. The following command is successful:

KILL 55

I get an error (Line 12: Incorrect syntax near '@xspid') in the following code on the KILL command. Any ideas?


declare @xspid smallint

declare killspids cursor local for
select spid from master.dbo.sysprocesses where dbid = 7
open killspids

fetch next from killspids into @xspid
WHILE @@FETCH_STATUS = 0

begin

kill @xspid
fetch next from killspids into @xspid

end
deallocate killspids
Next
Reply
Map
View

Click here to load this message in the networking platform