Server.KillAllProcesses 方法
Stops the all processes on the specified database.
命名空间: Microsoft.SqlServer.Management.Smo
程序集: Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)
语法
声明
Public Sub KillAllProcesses ( _
databaseName As String _
)
用法
Dim instance As Server
Dim databaseName As String
instance.KillAllProcesses(databaseName)
public void KillAllProcesses(
string databaseName
)
public:
void KillAllProcesses(
String^ databaseName
)
member KillAllProcesses :
databaseName:string -> unit
public function KillAllProcesses(
databaseName : String
)
参数
- databaseName
类型:System.String
An String that specifies the name of the database.
示例
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 命名空间