Metoda MergeSubscription.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 Sub SynchronizeWithJob
'Użycie
Dim instance As MergeSubscription
instance.SynchronizeWithJob()
public void SynchronizeWithJob()
public:
void SynchronizeWithJob()
member SynchronizeWithJob : unit -> unit
public function SynchronizeWithJob()
Uwagi
Jeśli subskrypcja wciągana jest tworzony z wartością false dla CreateSyncAgentByDefault, domyślnie zadanie agenta scalania dla subskrypcji nie jest utworzona i wywoływania SynchronizeWithJob spowoduje, że wyjątek.
Wywołanie StopSynchronizationJob metoda, aby zatrzymać zadanie, jeśli jest aktualnie uruchomione.
Zadanie nie jest w stanie uruchomić, jeśli SQL Server Usługa Agent jest uruchomiony.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 MergeSubscription, 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.
SynchronizeWithJob Metoda jest dostępna z SQL Server 2005 jedynie.
Ten obszar nazw, klasy lub element członkowski jest obsługiwany tylko w wersja 2.0 Microsoft .NET Framework.
Przykłady
// Define the server, publication, and database names.
string subscriberName = subscriberInstance;
string publisherName = publisherInstance;
string publicationName = "AdvWorksSalesOrdersMerge";
string subscriptionDbName = "AdventureWorks2008R2Replica";
string publicationDbName = "AdventureWorks2008R2";
// 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 = "AdventureWorks2008R2Replica"
Dim publicationDbName As String = "AdventureWorks2008R2"
' 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
Zobacz także