SubscriptionType Property
后续版本的 Microsoft SQL Server 将删除该功能。请避免在新的开发工作中使用该功能,并着手修改当前还在使用该功能的应用程序。
The SubscriptionType specifies direction and Publisher-visibility for a replication subscription.
语法
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 MergeSubscription and 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. |
备注
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.
Applies To:
|