Compartilhar via


HOWTO: Detect the database is Merge Replicated?

Sometimes an application may want to know whether the database is in good shape in terms of Merge Replication especially when the merge replication is aborted by the user, or due to connection failure or many other reasons. Here are the things application should ideally check if the database is merge replicated correctly and is usable further.

1. Ensure that the following system tables exist

a. __sysMergeSubscriptions

b. __sysMergeArticles

c. __sysTrackedObjects

d. __sysRowTrack

e. __sysDeletedRows

[Note: Tables (c), (d), (e) would be created only when the client side tracking of changes is needed. If all the articles are download only then you may not these tables at all]

2. For each merge subscription in this database,

a. An entry/row should exist in __sysMergeSubscriptions

b. A valid sync partner should exist:

SELECT * FROM __sysTrackedObjects AS sto JOIN __sysMergeSubscriptions AS sms ON sto.N = sms.SyncPartnerId AND sto.T=’P’ AND sto.SV = sms.Publication

3. For each subscribed table,

a. An entry/row should exist in __sysMergeArticles

b. The table should have the following seven system columns:

                                                  i. __sysIG, __sysCG, __sysCD, __sysP1, __sysMC, __sysMCS, __sysSR

Thanks,

Dan Shaver

Comments

  • Anonymous
    February 23, 2007
    有时候我们需要在应用程序中检测某个 SQL Server Compact Edition 数据库是否成功建立了合并复制。特别是在合并复制被用户终止了,或者连接失败等情况下。那么,我们的应用程序可以通过本文介绍的方法对数据库进行检测。