Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
KILL command
Message
De
23/07/2003 17:15:32
 
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
KILL command
Divers
Thread ID:
00812948
Message ID:
00812948
Vues:
45
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
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform