Server.KillProcess Method
Stops the specified process.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub KillProcess ( _
processId As Integer _
)
'Usage
Dim instance As Server
Dim processId As Integer
instance.KillProcess(processId)
public void KillProcess(
int processId
)
public:
void KillProcess(
int processId
)
member KillProcess :
processId:int -> unit
public function KillProcess(
processId : int
)
Parameters
- processId
Type: System.Int32
Examples
'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)
See Also