Database.SetOffline 方法
Sets the database offline.
命名空间: Microsoft.SqlServer.Management.Smo
程序集: Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)
语法
声明
Public Sub SetOffline
用法
Dim instance As Database
instance.SetOffline()
public void SetOffline()
public:
void SetOffline()
member SetOffline : unit -> unit
public function SetOffline()
注释
When the database is online, you can use this method to take it offline.
示例
VB
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks2012 database.
Dim db As Database
db = srv.Databases("AdventureWorks2012")
'Take the database offline
db.SetOffline()
'Bring the database back online.
db.SetOnline()
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2012")
$db.SetOffline()
$db.SetOnline()
请参阅
参考
Microsoft.SqlServer.Management.Smo 命名空间