sql server 复制 - 从查询中获取上次同步日期
有谁知道从 sql server (2008) 查询上次同步日期。
它与复制监视器中显示的信息相同,但我希望能够从查询中获取该日期。
Does anyone know the query the last synchronization date from sql server (2008).
It is the same information displayed in replication monitor, but I want to be able to get that date from a query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我创建了一个像这样的视图来获取订阅者的最后日期,
我将视图称为“LastSync” - 然后我像这样加入了该视图以获得与复制监视器显示的内容类似的表示。
I created a view like this to get last date by the subscriber
I called the view 'LastSync' - I then joined that view like this to get a representation similar to what the replication monitor shows.
您可以使用系统表 msMerge_sessions 查看有关合并会话的大量信息:
根据您需要的信息,使用数据库中可用的其他系统表。
You can see a lot of info about merge sessions by using the system table msMerge_sessions:
Depending on the info you need, use the other system tables available in your database.
对于回答号 3,
付出了很大的努力,但在视图上进行了一些修改,以便能够运行查询
---- 创建视图 LastSync 如下
---- 运行下面的查询
-- 祝你好运
For Answered Number 3
Great Effort but there're some modification On view for ability running Query
---- Create View LastSync as below
---- Run Below Query
-- Good Luck