Share via


Subscription.SyncType Property

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

Namespace:  Microsoft.SqlServer.Replication
Assembly:  Microsoft.SqlServer.Rmo (in Microsoft.SqlServer.Rmo.dll)

Syntax

'Declaration
Public Property SyncType As SubscriptionSyncType 
    Get 
    Set
'Usage
Dim instance As Subscription 
Dim value As SubscriptionSyncType 

value = instance.SyncType

instance.SyncType = value
public SubscriptionSyncType SyncType { get; set; }
public:
property SubscriptionSyncType SyncType {
    SubscriptionSyncType get ();
    void set (SubscriptionSyncType value);
}
member SyncType : SubscriptionSyncType with get, set
function get SyncType () : SubscriptionSyncType 
function set SyncType (value : SubscriptionSyncType)

Property Value

Type: Microsoft.SqlServer.Replication.SubscriptionSyncType
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 NIB 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.

See Also

Reference

Subscription Class

Microsoft.SqlServer.Replication Namespace