MergeSubscription.SynchronizeWithJob Methode

Definition

Startet den Agent-Auftrag zur Synchronisierung des Abonnements.

public:
 void SynchronizeWithJob();
public void SynchronizeWithJob ();
member this.SynchronizeWithJob : unit -> unit
Public Sub SynchronizeWithJob ()

Beispiele

// Define the server, publication, and database names.
string subscriberName = subscriberInstance;
string publisherName = publisherInstance;
string publicationName = "AdvWorksSalesOrdersMerge";
string subscriptionDbName = "AdventureWorks2012Replica";
string publicationDbName = "AdventureWorks2012";

// Create a connection to the Publisher.
ServerConnection conn = new ServerConnection(publisherName);

MergeSubscription subscription;

try
{
    // Connect to the Publisher.
    conn.Connect();

    // Define push subscription.
    subscription = new MergeSubscription();
    subscription.ConnectionContext = conn;
    subscription.DatabaseName = publicationDbName;
    subscription.PublicationName = publicationName;
    subscription.SubscriptionDBName = subscriptionDbName;
    subscription.SubscriberName = subscriberName;

    // If the push subscription and the job exists, start the agent job.
    if (subscription.LoadProperties() && subscription.AgentJobId != null)
    {
        // Start the Merge Agent asynchronously.
        subscription.SynchronizeWithJob();
    }
    else
    {
        // Do something here if the subscription does not exist.
        throw new ApplicationException(String.Format(
            "A subscription to '{0}' does not exists on {1}",
            publicationName, subscriberName));
    }
}
catch (Exception ex)
{
    // Implement appropriate error handling here.
    throw new ApplicationException("The subscription could not be synchronized.", ex);
}
finally
{
    conn.Disconnect();
}
' Define the server, publication, and database names.
Dim subscriberName As String = subscriberInstance
Dim publisherName As String = publisherInstance
Dim publicationName As String = "AdvWorksSalesOrdersMerge"
Dim subscriptionDbName As String = "AdventureWorks2012Replica"
Dim publicationDbName As String = "AdventureWorks2012"

' Create a connection to the Publisher.
Dim conn As ServerConnection = New ServerConnection(publisherName)

Dim subscription As MergeSubscription

Try
    ' Connect to the Publisher.
    conn.Connect()

    ' Define push subscription.
    subscription = New MergeSubscription()
    subscription.ConnectionContext = conn
    subscription.DatabaseName = publicationDbName
    subscription.PublicationName = publicationName
    subscription.SubscriptionDBName = subscriptionDbName
    subscription.SubscriberName = subscriberName

    ' If the push subscription and the job exists, start the agent job.
    If subscription.LoadProperties() And Not subscription.AgentJobId Is Nothing Then
        ' Start the Merge Agent asynchronously.
        subscription.SynchronizeWithJob()
    Else
        ' Do something here if the subscription does not exist.
        Throw New ApplicationException(String.Format( _
            "A subscription to '{0}' does not exists on {1}", _
            publicationName, subscriberName))
    End If
Catch ex As Exception
    ' Implement appropriate error handling here.
    Throw New ApplicationException("The subscription could not be synchronized.", ex)
Finally
    conn.Disconnect()
End Try

Hinweise

Wenn das Pullabonnement mit dem Wert false für CreateSyncAgentByDefaulterstellt wird, wird standardmäßig kein Merge-Agent Auftrag für das Abonnement erstellt, und das Aufrufen SynchronizeWithJob führt zu einer Ausnahme.

Rufen Sie die StopSynchronizationJob -Methode auf, um den Auftrag zu beenden, wenn er gerade ausgeführt wird.

Der Auftrag kann nicht gestartet werden, wenn der SQL Server-Agent Dienst nicht ausgeführt wird. Wenn keine Momentaufnahme generiert wird, wird das Abonnement möglicherweise nicht synchronisiert, wenn der Agentauftrag ausgeführt wird.

Wenn Sie zusätzliche Eigenschaften für diese Instanz von MergeSubscriptionfestgelegt haben, rufen Sie CommitPropertyChanges auf, bevor Sie aufrufen SynchronizeWithJob.

Die SynchronizeWithJob -Methode kann nur von Mitgliedern der festen Serverrolle sysadmin beim Abonnenten oder von Mitgliedern der festen Datenbankrolle db_owner festen Datenbankrolle in der Abonnementdatenbank aufgerufen werden.

Gilt für:

Weitere Informationen