다음을 통해 공유


SetOnline 메서드

Sets the database online.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo.dll의 Microsoft.SqlServer.Smo

구문

‘선언
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()