KillDatabase 方法
Deletes the specified database and drops any active connection.
命名空间: Microsoft.SqlServer.Management.Smo
程序集: Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)
语法
声明
Public Sub KillDatabase ( _
database As String _
)
用法
Dim instance As Server
Dim database As String
instance.KillDatabase(database)
public void KillDatabase(
string database
)
public:
void KillDatabase(
String^ database
)
member KillDatabase :
database:string -> unit
public function KillDatabase(
database : String
)
参数
- database
类型:System. . :: . .String
A String value that specifies the name of the database.
示例
'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)