sp_replqueuemonitor (Transact-SQL)

Lists the queue messages from a Microsoft SQL Server queue or Microsoft Message Queuing for queued updating subscriptions to a specified publication. If SQL Server queues are used, this stored procedure is executed at the Subscriber on the subscription database. If Message Queuing is used, this stored procedure is executed at the Distributor on the distribution database.

Topic link iconTransact-SQL Syntax Conventions

Syntax

sp_replqueuemonitor [ @publisher = ] 'publisher'
    [ , [ @publisherdb = ] 'publisher_db' ]
    [ , [ @publication = ] 'publication' ]
    [ , [ @tranid = ] 'tranid' ]
    [ , [ @queuetype = ] 'queuetype' ]

Arguments

  • [ @publisher = ] 'publisher'
    Is the name of the Publisher. publisher is sysname, with a default of NULL. The server must be configured for publishing. NULL for all Publishers.

  • [ @publisherdb = ] 'publisher_db' ]
    Is the name of the publication database. publisher_db is sysname, with a default of NULL. NULL for all publication databases.

  • [ @publication = ] 'publication' ]
    Is the name of the publication. publicationis sysname, with a default of NULL. NULL for all publications.

  • [ @tranid = ] 'tranid' ]
    Is the transaction ID. tranidis sysname, with a default of NULL. NULL for all transactions.

  • [@queuetype= ] 'queuetype' ]
    Is the type of queue that stores transactions. queuetype is tinyint with a default of 0, and can be one of these values.

    Value

    Description

    0

    All types of queues

    1

    Message Queuing

    2

    SQL Server queue

Return Code Values

0 (success) or 1 (failure)

Remarks

sp_replqueuemonitor is used in snapshot replication or transactional replication with queued updating subscriptions. The queue messages that do not contain SQL commands or are part of a spanning SQL command are not displayed.

Permissions

Only members of the sysadmin fixed server role or db_owner fixed database role can execute sp_replqueuemonitor.