Hi, How does oracle treats dml statements executed by multiple users on the same data object?. Suppose,
If there is a empty table named EMP(empname varchar2(30))
and user 'A
' makes an entry into it
using,
insert into emp values('A');
but hasn't committed it yet.
If another user 'B
' logged into the same database commits, would he/she sees the dml operations performed by 'A
'(i.e, 'A
' in the EMP
table)?
Other scenarios/links related to this topic would be much appreciated. Thanks in advance.