If I connect to the oracle database as a user blacksmith and issue the following 3 commands:
update smith.tablea set col_name = 'florence' where col_id = 8; insert into bob.other_table@mylink values ('blah',2,'uncle','new'); commit;
Does this mean that updating the local table (smith.tablea) and inserts in the remote db table (bob.other_table) were committed, or that only the local table was updated?
Note: "mylink" represents dblink for the remote database.
source share