This topic has not yet been rated - Rate this topic

Server.KillProcess Method

Stops the specified process.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
public void KillProcess(
	int processId
)

Parameters

processId
Type: System.Int32
'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)
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.