TransSubscription.Reinitialize Method

Definition

Marks the subscription for reinitialization.

Overloads

Reinitialize()

Marks the subscription for reinitialization the next time the Distribution Agent runs to synchronize the subscription.

Reinitialize(Boolean)

Reinitializes the subscription.

Reinitialize()

Marks the subscription for reinitialization the next time the Distribution Agent runs to synchronize the subscription.

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

Remarks

After calling the Reinitialize method, you must start synchronization to reinitialize the subscription. For more information, see How to: Reinitialize a Subscription (RMO Programming).

You should call CommitPropertyChanges to save any changes to the TransSubscription object on the server before calling Reinitialize.

The Reinitialize method can only be called by members of the sysadmin fixed server role at the Publisher (or at the Distributor for a non-SQL Server Publisher), by members of the db_owner fixed database role on the publication database (or on the distribution database for a non-SQL Server Publisher), or the user who created the subscription.

Calling Reinitialize is equivalent to executing sp_reinitsubscription (Transact-SQL).

Applies to

Reinitialize(Boolean)

Reinitializes the subscription.

public:
 void Reinitialize(bool invalidateSnapshot);
public void Reinitialize (bool invalidateSnapshot);
member this.Reinitialize : bool -> unit
Public Sub Reinitialize (invalidateSnapshot As Boolean)

Parameters

invalidateSnapshot
Boolean

Indicates whether to invalidate the snapshot.

Applies to