T-SQL replication - Skip a specific command
If i know the xact_seqno of the specific replication command how can i skip replicating that command? Can i somehow clear it in the Logs somehow?
MS SQL Ser开发者_JAVA技巧ver 2008 R2
AHIA, denaem
I don't know how you can skip it but you can delete it from MSrepl_commands on the distributor.
You can use sp_browsereplc
SELECT *
FROM dbo.MSrepl_commands
WHERE xact_seqno = ''
精彩评论