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
public SubscriptionSyncType SyncType { get; set; }
public:
property SubscriptionSyncType SyncType {
    SubscriptionSyncType get ();
    void set (SubscriptionSyncType value);
}
/** @property */
public SubscriptionSyncType get_SyncType ()

/** @property */
public void set_SyncType (SubscriptionSyncType value)
public function get SyncType () : SubscriptionSyncType

public function set SyncType (value : 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.

The SyncType property is available with Microsoft SQL Server 7.0, Microsoft SQL Server 2000, and Microsoft SQL Server 2005.

This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.

Thread Safety

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

See Also

Reference

Subscription Class
Subscription Members
Microsoft.SqlServer.Replication Namespace