MergePublication.ResynchronizeSubscription Method

Definition

Resynchronizes a merge subscription to a known validation state that you specify.

public:
 void ResynchronizeSubscription(System::String ^ subscriber, System::String ^ subscriptionDB, Microsoft::SqlServer::Replication::ResynchronizeType synchronizeType, System::String ^ dateTime);
public void ResynchronizeSubscription (string subscriber, string subscriptionDB, Microsoft.SqlServer.Replication.ResynchronizeType synchronizeType, string dateTime);
member this.ResynchronizeSubscription : string * string * Microsoft.SqlServer.Replication.ResynchronizeType * string -> unit
Public Sub ResynchronizeSubscription (subscriber As String, subscriptionDB As String, synchronizeType As ResynchronizeType, dateTime As String)

Parameters

subscriber
String

The Subscriber.

subscriptionDB
String

The subscription database.

synchronizeType
ResynchronizeType

The resynchronization type.

dateTime
String

The date and time from which the changes are resynchronized.

Remarks

The ResynchronizeSubscription method allows you to force convergence or synchronize the subscription database to a specific point in time, such as the last time there was a successful validation, or to a specified date. The snapshot is not reapplied when resynchronizing a subscription using this method.

The ReadLastValidationDateTimes method can be used to determine the date and time of the last successful validation of the subscription.

Calling ResynchronizeSubscription is equivalent to executing sp_resyncmergesubscription.

The ResynchronizeSubscription method can only be called by members of the sysadmin fixed server role at the Publisher or by members of the db_owner fixed database role on the publication database.

Applies to