Поделиться через


Метод MergePublication.MakePullSubscriptionWellKnown

Registers a merge pull subscription at the Publisher.

Пространство имен:  Microsoft.SqlServer.Replication
Сборка:  Microsoft.SqlServer.Rmo (в Microsoft.SqlServer.Rmo.dll)

Синтаксис

'Декларация
Public Sub MakePullSubscriptionWellKnown ( _
    subscriber As String, _
    subscriptionDB As String, _
    syncType As SubscriptionSyncType, _
    subscriberType As MergeSubscriberType, _
    priority As Single _
)
'Применение
Dim instance As MergePublication 
Dim subscriber As String 
Dim subscriptionDB As String 
Dim syncType As SubscriptionSyncType 
Dim subscriberType As MergeSubscriberType 
Dim priority As Single

instance.MakePullSubscriptionWellKnown(subscriber, _
    subscriptionDB, syncType, subscriberType, _
    priority)
public void MakePullSubscriptionWellKnown(
    string subscriber,
    string subscriptionDB,
    SubscriptionSyncType syncType,
    MergeSubscriberType subscriberType,
    float priority
)
public:
void MakePullSubscriptionWellKnown(
    String^ subscriber, 
    String^ subscriptionDB, 
    SubscriptionSyncType syncType, 
    MergeSubscriberType subscriberType, 
    float priority
)
member MakePullSubscriptionWellKnown : 
        subscriber:string * 
        subscriptionDB:string * 
        syncType:SubscriptionSyncType * 
        subscriberType:MergeSubscriberType * 
        priority:float32 -> unit
public function MakePullSubscriptionWellKnown(
    subscriber : String, 
    subscriptionDB : String, 
    syncType : SubscriptionSyncType, 
    subscriberType : MergeSubscriberType, 
    priority : float
)

Параметры

  • subscriber
    Тип: System.String
    The Subscriber where the pull subscription was created.
  • subscriptionDB
    Тип: System.String
    The subscription database in which the pull subscription was created.
  • priority
    Тип: System.Single
    The weighting of the pull subscription to resolve conflicts when more than one change occurs in the same replicated data.

Замечания

Use EnumSubscriptions to determine if a subscription is already registered at the Publisher. If the registration exists, MakePullSubscriptionWellKnown generates an error at the server.

The MakePullSubscriptionWellKnown method can only be called 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.

Calling MakePullSubscriptionWellKnown is equivalent to executing sp_addmergesubscription to register the pull subscription.

См. также

Справочник

MergePublication Класс

Пространство имен Microsoft.SqlServer.Replication

Другие ресурсы

Как создать подписку по запросу (программирование объектов RMO)