Server.KillAllProcesses Method (String)

 

Applies To: SQL Server 2016 Preview

Stops the all processes on the specified database.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

public void KillAllProcesses(
    string databaseName
)
public:
void KillAllProcesses(
    String^ databaseName
)
member KillAllProcesses : 
        databaseName:string -> unit
Public Sub KillAllProcesses (
    databaseName As String
)

Parameters

Examples

Legacy Code Example

Visual Basic

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Stop all processes running on the AdventureWorks2012 database.
srv.KillAllProcesses("AdventureWorks2012")
'Stop the AventureWorks database.
srv.KillDatabase("AdventureWorks2012")
'Stop the specified process with ID 52.
srv.KillProcess(52)

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$srv.KillAllProcesses("AdventureWorks2012")
$srv.KillDatabase("AdventureWorks2012")
$srv.KillProcess(52)

See Also

Server Class
Microsoft.SqlServer.Management.Smo Namespace
Calling Methods

KILL (Transact-SQL)
Unable to find linked topic '776ac273-bbe5-45e2-8bc8-a6f2b9cac03a'.

Return to top