Udostępnij za pośrednictwem


Metoda TransPullSubscription.SynchronizeWithJob

Uruchamia zadanie agenta do synchronizacji subskrypcja.

Przestrzeń nazw:  Microsoft.SqlServer.Replication
Zestaw:  Microsoft.SqlServer.Rmo (w Microsoft.SqlServer.Rmo.dll)

Składnia

'Deklaracja
Public Overrides Sub SynchronizeWithJob
'Użycie
Dim instance As TransPullSubscription

instance.SynchronizeWithJob()
public override void SynchronizeWithJob()
public:
virtual void SynchronizeWithJob() override
abstract SynchronizeWithJob : unit -> unit 
override SynchronizeWithJob : unit -> unit 
public override function SynchronizeWithJob()

Uwagi

Użyj TransSynchronizationAgent obiektu zwróconego przez SynchronizationAgent właściwość, aby uruchomić agenta dystrybucji synchronicznie.

Jeśli subskrypcja wciągana jest tworzony z wartością false dla CreateSyncAgentByDefault, domyślnie zadanie agenta dystrybucji subskrypcji nie jest utworzona i wywoływania SynchronizeWithJob powoduje wyjątek.

Wywołanie StopSynchronizationJob metoda, aby zatrzymać zadanie, jeśli jest aktualnie uruchomione.

The job is not able to start if the Microsoft SQL Server Agent Service is not running.Także jeśli migawka nie jest generowany, zadanie agent może nie zsynchronizować subskrypcja.

Jeśli masz zestaw dodatkowe właściwości dla tego wystąpienie TransPullSubscription, call CommitPropertyChanges Przed wywoływaniem SynchronizeWithJob.

SynchronizeWithJob Metoda może być wywoływana tylko przez członków sysadmin rolę stałej serwera Subskrybent lub przez członków db_owner ustaloną rola bazy danych na baza danych subskrypcja.

Ten obszar nazw, klasy lub element członkowski jest obsługiwany tylko w wersja 2.0.NET Framework.

Przykłady

           // Define server, publication, and database names.
            String subscriberName = subscriberInstance;
            String publisherName = publisherInstance;
            String publicationName = "AdvWorksProductTran";
            String publicationDbName = "AdventureWorks2008R2";
            String subscriptionDbName = "AdventureWorks2008R2Replica";

            // Create a connection to the Subscriber.
            ServerConnection conn = new ServerConnection(subscriberName);

            TransPullSubscription subscription;

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

                // Define subscription properties.
                subscription = new TransPullSubscription();
                subscription.ConnectionContext = conn;
                subscription.DatabaseName = subscriptionDbName;
                subscription.PublisherName = publisherName;
                subscription.PublicationDBName = publicationDbName;
                subscription.PublicationName = publicationName;

                // If the pull subscription and the job exists, start the agent job.
                if (subscription.LoadProperties() && subscription.AgentJobId != null)
                {
                    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)
            {
                // Do appropriate error handling here.
                throw new ApplicationException("The subscription could not be synchronized.", ex);
            }
            finally
            {
                conn.Disconnect();
            }
' Define server, publication, and database names.
Dim subscriberName As String = subscriberInstance
Dim publisherName As String = publisherInstance
Dim publicationName As String = "AdvWorksProductTran"
Dim publicationDbName As String = "AdventureWorks2008R2"
Dim subscriptionDbName As String = "AdventureWorks2008R2Replica"

' Create a connection to the Subscriber.
Dim conn As ServerConnection = New ServerConnection(subscriberName)

Dim subscription As TransPullSubscription

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

    ' Define subscription properties.
    subscription = New TransPullSubscription()
    subscription.ConnectionContext = conn
    subscription.DatabaseName = subscriptionDbName
    subscription.PublisherName = publisherName
    subscription.PublicationDBName = publicationDbName
    subscription.PublicationName = publicationName

    ' If the pull subscription and the job exists, start the agent job.
    If subscription.LoadProperties() And Not subscription.AgentJobId Is Nothing Then
        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
    ' Do appropriate error handling here.
    Throw New ApplicationException("The subscription could not be synchronized.", ex)
Finally
    conn.Disconnect()
End Try