SQL Server 2005 复制 - 指示数据已复制

发布于 2024-09-06 12:46:45 字数 156 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_蜘蛛 2024-09-13 12:46:45

选择 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文