I'm curious to know whether optimistic concurrency control applies across remote tables.
For example:
db1 contains tableA
db2 defines remote tableA-> db1
say that db1 modifies tableA, while db2 already had an open transaction on the same table. Will the transaction on db2 fail?
Roberto