Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Please a parameter to disable undo, like _disable_logging
Based on my test
Begin discrete transaction don't work disabling undo information, because I
can see data before the commit.
SQL> exec DBMS_TRANSACTION.BEGIN_DISCRETE_TRANSACTION; SQL> update test set object_name = 'a'; SQL> select distinct object_name from test;
OBJECT_NAME
a
When there is not undo info you can't do that, for example append don't generate undo info, and you can't see data until you commit.
SQL> insert /*+ APPEND */ into test select * from dba_objects;
29291 rows created.
SQL> select distinct object_name from test;
select distinct object_name from test
*
Or I'm wrong.
Thanks in advance.
Juan Carlos Reyes Pacheco
OCP
--
http://www.freelists.org/webpage/oracle-l
Received on Wed Oct 06 2004 - 14:09:28 CDT
![]() |
![]() |