Server.KillProcess メソッド
指定したプロセスを停止します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Sub KillProcess ( _
processId As Integer _
)
'使用
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
)
パラメーター
- processId
型: System.Int32
プロセスを一意に識別するシステム ID 値を示す Int32 です。
使用例
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)
関連項目
参照
Microsoft.SqlServer.Management.Smo 名前空間