GeekArticles
FAQ
Oracle FAQdb file sequential read
Author: asktom.oracle.com |
Published: 14th Dec 2007 |
Visited: 35 times |
Add CommentFiled in: Oracle FAQHi Tom, I have the following update...
<code>
UPDATE T
SET T_TIME = :B3
WHERE T_ID = :B2
AND T_TIME IS NULL
AND T_DAY_ID = :B1
call count cpu elapsed disk query current rows
------- ------ -----...
Read Article Sponsored Links
Related Articles
• Read committed--Why transaction can read uncommitted data Hello Tom
Thanks for your time.. I have a question: I understand that by default Oracle uses read committed by statement level, normally other session can't see the modification execept the session that makes the modification itself. Read c ...