다음을 통해 공유


SetOnline 메서드

데이터베이스를 온라인으로 설정합니다.

네임스페이스:  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.

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks2008R2 database.
Dim db As Database
db = srv.Databases("AdventureWorks2008R2")

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

$db.SetOffline()
$db.SetOnline()