sp_setsubscriptionxactseqno (Transact-SQL)
Used during troubleshooting to specify the log sequence number (LSN) of the next transaction to be applied by the Distribution Agent at the Subscriber, which enables the agent to skip a failed transaction. This stored procedure is executed at the Subscriber on the subscription database. Not supported for non-SQL Server Subscribers.
Caution |
|---|
Using this stored procedure incorrectly or specifying an incorrect LSN value can cause the Distribution Agent to revert changes that were already applied at the Subscriber or skip over all remaining changes. |
Column name | Data type | Description |
|---|---|---|
ORIGINAL XACT_SEQNO | varbinary(16) | The original LSN of the next transaction to be applied at the Subscriber. |
UPDATED XACT_SEQNO | varbinary(16) | The updated LSN of the next transaction to be applied at the Subscriber. |
SUBSCRIPTION STREAM COUNT | int | The number of subscription streams used during the last synchronization. |
sp_setsubscriptionxactseqno is used in transactional replication.
sp_setsubscriptionxactseqno cannot be used in a peer-to-peer transactional replication topology.
sp_setsubscriptionxactseqno can be used to skip a specific transaction that is causing an error when applies at the Subscriber. When there is a failure and after the Distribution Agent stops, call sp_helpsubscriptionerrors (Transact-SQL) at the Distributor to retrieve the xact_seqno value of the failed transaction, and then call sp_setsubscriptionxactseqno, passing this value for xact_seqno. This will ensure that only the commands after this LSN will be processed.
Specify a value of 0 for xact_seqno to deliver all pending commands in the distribution database to the Subscriber.
sp_setsubscriptionxactseqno may fail if the Distribution Agent uses multi-subscription streams.
When this error occurs, you must run the Distribution Agent with a single subscription stream. For more information, see Replication Distribution Agent.

Caution