Condividi tramite


EnumAlternatePublishers Method

Questa caratteristica verrà rimossa a partire da una delle prossime versioni di Microsoft SQL Server. Evitare di utilizzare questa funzionalità in un nuovo progetto di sviluppo e prevedere interventi di modifica nelle applicazioni in cui è attualmente implementata.

The EnumAlternatePublisher method enumerates all servers in a list of alternate Publishers.

Sintassi

object.EnumAlternatePublishers( )as QueryResults

Parts

  • object
    Expression that evaluates to an object in the Applies To list.

Prototype (C/C++)

HRESULT EnumAlternatePublishers(LPSQLDMOQUERYRESULTS *ppResults);

Returns

A QueryResults object that contains one result set defined by these columns.

Column

Data type

Description

alternate_distributor

sysname

Name of the Distributor.

alternate_publication

sysname

Name of the publication.

alternate_publisher

sysname

Name of the alternate Publisher.

alternate_publisher_db

sysname

Name of the publication database.

enabled

bit

Whether the server is an alternate Publisher.

friendly_name

nvarchar(255)

Description of the alternate Publisher.

Osservazioni

Run the EnumAlternatePublishers method to obtain a list of enabled alternate Publishers. The enabled bit is set to 1 if a server is an enabled alternate Publisher, and is set to zero if the server is not enabled as an alternate Publisher. Subscribers can then synchronize with any listed alternate Publisher, a technique that provides an efficient way to synchronize a mobile Subscriber not connected to the Publisher with which it ordinarily synchronizes data changes.

The AllowSyncToAlternate property must be set to TRUE for subscriptions to synchronize with an alternate Publisher.

Use the AddAlternatePublisher method to add a server to the list of alternate Publishers.

[!NOTA]

If an application calls EnumAlternatePublishers on an instance of SQL Server version 7.0, the constant, SQLDMO_E_SQL80ONLY, and the message "This property or method requires Microsoft SQL Server 2000 or later" are returned.