SetOffline 메서드
Sets the database offline.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo.dll의 Microsoft.SqlServer.Smo
구문
‘선언
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()