m:
What happens if I get more than one user updating the same
record. Who wins the replication!?
I didn't finish my original answer (I wrote only about column-level
conflict resolution).
In cases where two users update data in the same column, the edit in
the replica with the highest replication priority wins. The Design
Masgter starts out with a priority of 100. Any replicas created from
it have 90% of the replica priority, so they would have 90. A
replica created from a 90 priority replica would have a priority of
81 (i.e., 90% of 90), and so on. When two replicas synchronize edits
to the same field in a replica win for the replica with the higher
priority.
When the replicas have the same priority, it's not really
predictable which edit wins. In Jet 3.5, replica priorities didn't
exist (nor did column-level conflict resolution), and the record
with the most edits would win. I don't know the exact mechanism for
Jet 4 when the replica priorities are the same.
In my replication topologies, the DM is 100, the editing replicas 90
and any synchronization hubs (which never have any edits and server
only as conduits for synchronization operations) are 81. The DM is
never edited, and never really matters in regard to edits.
Another thing to keep in mind:
The "conflict resolver" is actually somewhat misnamed, as it's not
really resolving the conflict so much as *confirming* it. When you
see conflicts, they've already been resolved, in favor of the data
in what is presented as the WINNING RECORD. If you do nothing, the
conflict has already been resolved. The conflict resolver only gives
you the opportunity to confirm that Jet resolved it correctly, or to
override Jet's resolution, or to mix up data from both records into
the winning record (by copying and pasting data from the two
versions of the record).
If you deleted the conflict tables before resolving conflicts,
nothing bad would happen in terms of synchronization. The only thing
you would lose is the opportunity to confirm that the conflicts were
resolved the way you want them resolved.