SQL Server 2005 复制 - 指示数据已复制
我正在使用 SQL Server 2005 复制将数据从服务器上的一个表复制到远程服务器上的表。这是实时发生的。即,每当发布者处的数据发生更改时,它就会被复制到订阅者处。
我需要从发布者的服务器知道哪些数据已复制到订阅者。有没有办法用 SQL 来解决这个问题?
谢谢
I am using SQL Server 2005 replication to replicate data from one table on a server to the a table on a remote server. This is happening in real time. i.e whenever the data is changed at the publisher, it is then replicated to the subscribers.
From the publisher's server I need to know what data has been replicated to the subscriber. Is there a way to figure this out using SQL?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选择 publ.pk_col
从
pubdb.dbo.tbl publ
JOIN linked_server_subscriber.pubdb.dbo.tbl 订阅者
ON publ.pk_col = subs.pk_col
select publ.pk_col
FROM
pubdb.dbo.tbl publ
JOIN linked_server_subscriber.pubdb.dbo.tbl subs
ON publ.pk_col = subs.pk_col