Is it possible to allow on Oracle 11g multiple UPDATE on the same line on 2 different transaction ?
For example in the first transaction
UPDATE MYTABLE SET COLUMN1 = 'value1'
And in the second transaction, the update is locked by the first one.
UPDATE MYTABLE SET COLUMN1 = 'value2'
I need to allow both update that will be visible on their own transaction.
In my context, both transaction will be rollbacked at the end.
It's like a level 1 cache associated to each transaction where all modifications will be applied and read until commited.