共用方式為


SubscriberType Property (TransPullSubscription, TransSubscription)

未來的 Microsoft SQL Server 發行版本將不再提供此功能。請避免在新的開發工作中使用此功能,並計劃修改目前使用此功能的應用程式。

The SubscriberType property defines subscription behavior when data maintained in a subscribed-to article is altered at the Subscriber.

語法

object
.SubscriberType [= value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list.
  • value
    A long integer or constant value as described in Settings.

Data Type

Long, enumerated

Modifiable

Read/write when using the SQL Distributed Management Objects (SQL-DMO) object to create a subscription.

Read-only when the object references an existing subscription.

Prototype (C/C++)

HRESULT GetSubscriberType(SQLDMO_TRANSUBSCRIBER_TYPE* pRetVal);
HRESULT SetSubscriberType(SQLDMO_TRANSUBSCRIBER_TYPE NewValue);

Settings

Constant Value Description

SQLDMOTranSubscriber_/Default

0

SQLDMOTranSubscriber_/ReadOnly.

SQLDMOTranSubscriber_/ReadOnly

0

A Subscriber update to any publication article affects only the image maintained at the Subscriber.

SQLDMOTranSubscriber_/Synchronous

1

A Subscriber update to a publication article is applied in a distributed transaction, updating the Publisher-maintained image for article data or failing entirely.

Applies To:

TransPullSubscription Object

TransSubscription Object