MSrepl_transactions table in distribution database. Copy the sequence number of the transaction (i.e., xact_seqno ) which entered the distribution database last.
@xact_seqno_start below.

MSrepl_transactions table in distribution database. Copy the sequence number of the transaction (i.e., xact_seqno ) which entered the distribution database last.
SELECT top 1
entry_time AS trans_entry_time_in_dist_db,
publisher_database_id,
xact_id,
xact_seqno
FROM distribution.dbo.MSrepl_transactions
ORDER BY entry_time DESC
@xact_seqno_start below.
EXEC distribution.dbo.sp_browsereplcmds
@xact_seqno_start = '0x0005B68700176AEC000C'
--replace the xact_seqno from the previous query
