Instance.Disable Method
Sets the state of the instance to Disabled.
네임스페이스: Microsoft.SqlServer.Management.Nmo
어셈블리: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
구문
‘선언
Public Sub Disable
public void Disable ()
public:
void Disable ()
public void Disable ()
public function Disable ()
주의
When you create an instance of Notification Services, the instance and all of its components are disabled.
Disabling an instance of Notification Services prevents all event collection, notification generation, notification distribution, and subscription management. You can disable the instance to pause processing. You must disable the instance before you update it.
The Notification Services engine queries the database for the status of its components every 30 seconds. Until the engine picks up the status change, engine components show a status of Disable Pending.
예
The following examples show how to disable, unregister, and drop an instance of Notification Services:
// First disable the instance.
Console.WriteLine("Disabling instance...");
inst.Disable();
// Then unregister the instance.
Console.WriteLine("Unregistering instance...");
inst.UnregisterLocal();
// And then delete the instance.
Console.WriteLine("Deleting instance...");
inst.Drop();
Console.WriteLine("Done.");
' First disable the instance.
Console.WriteLine("Disabling instance...")
inst.Disable()
' Then unregister the instance.
Console.WriteLine("Unregistering instance...")
inst.UnregisterLocal()
' And then delete the instance.
Console.WriteLine("Deleting instance...")
inst.Drop()
Console.WriteLine("Done.")
스레드 보안
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
Instance Class
Instance Members
Microsoft.SqlServer.Management.Nmo Namespace