I would create a simple function or just throw the results into a parameter table and loop through the spids, executing a kill command for each (you could also use a cursor). you could play with the query below to ensure you only get the spids you truly want to KILL...
SELECT spid FROM sys. sysprocesses P
JOIN sys .sysdatabases D ON (D .dbid = P. dbid)
WHERE LTRIM (RTRIM( D.Name )) = @dbname
AND P. spid != @@SPID
______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience