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