Server.KillProcess Method
SQL Server 2008
Stops the specified process.
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Stop all processes running on the AdventureWorks database.
srv.KillAllProcesses("AdventureWorks")
'Stop the AventureWorks database.
srv.KillDatabase("AdventureWorks")
'Stop the specified process with ID 52.
srv.KillProcess(52)
