atomicity
525458Aug 14 2006 — edited Aug 14 2006Hello,
Oracle maintains atomicity.
I want to know at what condition it maintain automatic atomicity.
I have one example
Sql> Update xyz
set emp_no=12
where emp_no=16; This happens successfully.
Sql>Update xyz
set emp_no=12
where emp_no=16; this fails.
These two statement make my one transaction; as staements (2) fails, how does it maintain atomicity.
Thanks.