Hi,
I have DBReplicator running on a pair of test databases. Works great when there's no concurrency, but when I do two inserts and then sync tables, only the "winning" record remains because they both share the same serial ID. I've tried to investigate setting up the publication to ignore the ID column (since there are no foreign keys, it doesn't matter what the ID value is) but although there appears to be code and structure for ignore columns, I can't find documentation to actually set this up, and the console doesn't appear to support it.
Further, when I update the same record in two different databases and do the sync, once again one of the updates gets clobbered, even if the updated column is not the same.
And when I delete the record in one database and update it in another, the delete operation should always win, but once again the "winning" operation takes precedence.
Is there currently a way around this? It may be a deal-breaker for me if there isn't, though I might be able to modify the code myself to fix it.

