开发者

T-SQL replication - Skip a specific command

开发者 https://www.devze.com 2023-02-19 17:23 出处:网络
If i know the xact_seqno of the specific replication command how can i skip replicating that 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 = ''
0

精彩评论

暂无评论...
验证码 换一张
取 消