共用方式為


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.

範例

  '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()