Subscription.SyncType Property

Definition

Gets or sets the manner in which the subscription is initialized.

public:
 property Microsoft::SqlServer::Replication::SubscriptionSyncType SyncType { Microsoft::SqlServer::Replication::SubscriptionSyncType get(); void set(Microsoft::SqlServer::Replication::SubscriptionSyncType value); };
public Microsoft.SqlServer.Replication.SubscriptionSyncType SyncType { get; set; }
member this.SyncType : Microsoft.SqlServer.Replication.SubscriptionSyncType with get, set
Public Property SyncType As SubscriptionSyncType

Property Value

A SubscriptionSyncType value.

Remarks

The SyncType property is a read-only property for transactional or snapshot replication and a read/write property for merge replication.

If the SyncType property is changed for a subscription to a merge publication after the initial snapshot has been applied, the subscription must be reinitialized. For more information, see How to: Reinitialize a Subscription (RMO Programming).

For a subscription to a transactional publication, ReplicationSupportOnly and InitializeWithBackup are only supported on Microsoft SQL Server 2005 and later versions.

The SubscriptionDBName property can only be retrieved by members of the sysadmin fixed server role at the Publisher, by members of the db_owner fixed database role on the publication database, or by the user that created the subscription.

The SubscriptionDBName property can only be set 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.

Retrieving the SubscriptionDBName property is equivalent to executing sp_helpsubscription or sp_helpmergesubscription.

Setting the SubscriptionDBName property is equivalent to executing sp_addmergesubscription or sp_changemergesubscription.

Applies to