SubscriptionType Property
Diese Funktion wird in zukünftigen Versionen von Microsoft SQL Server nicht mehr bereitgestellt. Verwenden Sie diese Funktion beim Entwickeln neuer Anwendungen nicht, und planen Sie das Ändern von Anwendungen, in denen es zurzeit verwendet wird.
The SubscriptionType specifies direction and Publisher-visibility for a replication subscription.
Syntax
object.SubscriptionType [=value]
Parts
object
An expression that evaluates to an object in the Applies To list.value
A long integer that specifies a type of subscription as described in Settings.
Data Type
Long, enumerated
Modifiable
Read-only for the MergeSubscriptionand TransSubscription objects. Read/write for all other SQL Distributed Management Objects (SQL-DMO) subscription objects when the object is used to create a replication subscription.
Prototype (C/C++)
HRESULT GetSubscriptionType(SQLDMO_SUBSCRIPTION_TYPE* pRetVal);
HRESULT SetSubscriptionType(SQLDMO_SUBSCRIPTION_TYPE NewValue);
Settings
Constant |
Value |
Description |
---|---|---|
SQLDMOSubscription_All |
3 |
SQLDMOSubscription_Pull and SQLDMOSubscription_Anonymous are combined using an OR logical operator. |
SQLDMOSubscription_/Anonymous |
2 |
Subscription is anonymous. It is valid for Subscriber-originated subscriptions only. |
SQLDMOSubscription_Default |
0 |
SQLDMOSubscription_Push. |
SQLDMOSubscription_Pull |
1 |
The subscription is Subscriber-originated. |
SQLDMOSubscription_Push |
0 |
The subscription is Publisher-originated. |
Hinweise
The SQL-DMO object used to define a subscription determines whether the subscription is Publisher-originated (push) or Subscriber-initiated (pull). When using SQL-DMO to configure replication, use SubscriptionType when creating anonymous pull subscriptions.