Condividi tramite


Metodo KillProcess

Arresta il processo specificato.

Spazio dei nomi  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Sintassi

'Dichiarazione
Public Sub KillProcess ( _
    processId As Integer _
)
'Utilizzo
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
)

Parametri

  • processId
    Tipo: System. . :: . .Int32
    Valore Int32 che specifica il valore dell'ID di sistema che identifica in modo univoco il processo.

Esempi

Visual Basic

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

PowerShell

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