Instance.Update Method
Updates the instance of Notifications, and all of its applications, with changes made to Instance and Application properties.
네임스페이스: Microsoft.SqlServer.Management.Nmo
어셈블리: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
구문
‘선언
Public Sub Update
public void Update ()
public:
void Update ()
public void Update ()
public function Update ()
주의
The Update method compares the current instance and application definitions in the databases with your definitions of the instance and its applications. For each valid change, the Update method updates the database as specified.
Not all of the instance and application properties can be updated. For example you cannot change the instance and application database definitions. For more information, review the documentation for the properties you are updating.
Altering some EventClass, SubscriptionClass, and NotificationClass properties can delete or rename existing tables in the application database. Review the properties you are changing to make sure you know the effects of the changes.
예
The following examples show how to update an instance of Notification Services:
// Specify the Database Engine instance that hosts the
// Notificaiton Services instance and get a reference to
// the NotificationServices object.
smo.Server server = new smo.Server(sqlServer);
NotificationServices notificationServices =
server.NotificationServices;
// Get the Notification Services instance.
Instance nsinst = notificationServices.Instances[instanceName];
// If using encryption, set the argument key. The value
// must match the value used when creating the instance.
nsinst.ArgumentKey = "MyKey135711";
// Disable the instance.
Console.WriteLine("Disabling instance...");
nsinst.Disable();
// Get the application to update.
Application nsapp = nsinst.Applications[applicationName];
// Set the application's subscription throttle to 1000.
nsapp.SubscriptionThrottle = 1000;
// Update the instance of Notification Services.
// This can take a few minutes.
Console.WriteLine("Updating instance...");
nsinst.Update();
// Enable the instance.
Console.WriteLine("Enabling instance...");
nsinst.Enable();
// Generate new XML files.
Console.WriteLine("Exporting instance configuration...");
nsinst.Export(@"C:\NS\Full", true);
Console.WriteLine("Done.");
' Specify the Database Engine instance that hosts the
' Notificaiton Services instance and get a reference to
' the NotificationServices object.
Dim server As smo.Server = New smo.Server(sqlServer)
Dim notificationServices As NotificationServices = _
server.NotificationServices
' Get the Notification Services instance.
Dim nsinst As Instance = _
notificationServices.Instances(instanceName)
' If using encryption, set the argument key. The value
' must match the value used when creating the instance.
nsinst.ArgumentKey = "MyKey135711"
' Disable the instance.
Console.WriteLine("Disabling instance...")
nsinst.Disable()
' Get the application to update.
Dim nsapp As Application = nsinst.Applications(applicationName)
' Set the application's subscription throttle to 1000.
nsapp.SubscriptionThrottle = 1000
' Update the instance of Notification Services.
' This can take a few minutes.
Console.WriteLine("Updating instance...")
nsinst.Update()
' Enable the instance.
Console.WriteLine("Enabling instance...")
nsinst.Enable()
' Verify the change in XML (just for fun).
Console.WriteLine("Exporting instance configuration...")
nsinst.Export("C:\NS\Full\Update", True)
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