| title | sp_replmonitorsubscriptionpendingcmds (T-SQL) | ||
|---|---|---|---|
| description | Describes the sp_replmonitorsubscriptionpendingcmds stored procedure which returns information on the number of pending commands for a subscription to a transactional publication. | ||
| ms.custom | seo-lt-2019 | ||
| ms.date | 03/06/2017 | ||
| ms.prod | sql | ||
| ms.prod_service | database-engine | ||
| ms.reviewer | |||
| ms.technology | replication | ||
| ms.topic | reference | ||
| f1_keywords |
|
||
| helpviewer_keywords |
|
||
| ms.assetid | df5b955a-feb0-4863-9b3b-7f71e9653b3d | ||
| author | markingmyname | ||
| ms.author | maghan |
[!INCLUDE SQL Server SQL MI]
Returns information on the number of pending commands for a subscription to a transactional publication and a rough estimate of how much time it takes to process them. This stored procedure returns one row for each returned subscription. This stored procedure, which is used to monitor replication, is executed at the Distributor on the distribution database.
Transact-SQL Syntax Conventions
sp_replmonitorsubscriptionpendingcmds [ @publisher = ] 'publisher'
, [ @publisher_db = ] 'publisher_db'
, [ @publication = ] 'publication'
, [ @subscriber = ] 'subscriber'
, [ @subscriber_db = ] 'subscriber_db'
, [ @subscription_type = ] subscription_type
[ @publisher = ] 'publisher'
Is the name of the Publisher. publisher is sysname, with no default.
[ @publisher_db = ] 'publisher_db'
Is the name of the published database. publisher_db is sysname, with no default.
[ @publication = ] 'publication'
Is the name of the publication. publication is sysname, with no default.
[ @subscriber = ] 'subscriber'
Is the name of the Subscriber. subscriber is sysname, with no default.
[ @subscriber_db = ] 'subscriber_db'
Is the name of the subscription database. subscriber_db is sysname, with no default.
[ @subscription_type = ] subscription_type
If the type of subscription. publication_type is int, with no default and can be one of these values.
| Value | Description |
|---|---|
| 0 | Push subscription |
| 1 | Pull subscription |
| Column name | Data type | Description |
|---|---|---|
| pendingcmdcount | int | The number of commands that are pending for the subscription. |
| estimatedprocesstime | int | Estimate of the number of seconds required to deliver all of the pending commands to the Subscriber. |
0 (success) or 1 (failure)
sp_replmonitorsubscriptionpendingcmds is used with transactional replication.
Only members of the sysadmin fixed server role at the Distributor or members of the db_owner fixed database role in the distribution database can execute sp_replmonitorsubscriptionpendingcmds. Members of the publication access list for a publication that uses the distribution database can execute sp_replmonitorsubscriptionpendingcmds to return pending commands for that publication.