Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: ORA-12838 please : Is possible to append two times to the same table before doing a commit
I believe Oracle is enforcing this to guarantee consistency of the database. I realise you are probably using the APPEND hint for performance reasons but is it really necessary?
Otherwise you could perhaps look at move complex arrangements involving temporary tables for the two inserts and then a single insert into the final table. Perhaps even place the first query into a temporary table and then for the second query add "union all select * from temp_table" to the end to combine the two results. Some times you have to work with what you are given - I doubt it's an Oracle bug, there's probably a real complication with performing two appended inserts on a table without commiting the first lot of data (perhaps a sudden inability to rollback the transaction).
=
=20
"Juan Cachito =
=20
Reyes Pacheco" To: <oracle-l_at_freelis= ts.org> =20 <jreyes_at_dazasoftwa cc: =
=20
re.com> Subject: Re: ORA-12838 ple= ase : Is possible to append two times to the same table =20 Sent by: before doing a commit =
=20
oracle-l-bounce_at_fr =
=20
eelists.org =
=20
=
=20
=
=20
02/04/2004 08:51 =
=20
Please respond to =
=20
oracle-l =
=20
=
=20
=
=20
Hi Mladlen the idea is this, maybe there is a hidden parameter, or some
workaround to this.
I read in a previous post in this forum this seems to be a bug.
And I can't do a commit between them. >:)
SQL> CREATE TABLE TEST( A NUMBER ); Tabla creada.
SQL> INSERT /*+ APPEND */ INTO TEST SELECT ROWNUM FROM DBA_OBJECTS WHERE
ROWNUM<
5;
4 filas creadas.
SQL> INSERT /*+ APPEND */ INTO TEST SELECT ROWNUM FROM DBA_OBJECTS WHERE
ROWNUM<
5;
INSERT /*+ APPEND */ INTO TEST SELECT ROWNUM FROM DBA_OBJECTS WHERE
ROWNUM<5
*
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<---->>>>>>>>>>>>>>>>>>>>>= >>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Opinions, conclusions and other information in this message that do not rel= ate to the official business of Transurban Infrastructure Developments Limi= ted and CityLink Melbourne Limited shall be understood as neither given nor=endorsed by them.
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<---->>>>>>>>>>>>>>>>>>>>>= >>>>>>>>>>>>>>>>>>>>>>>>>>>>> ----------------------------------------------------------------Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Thu Apr 01 2004 - 17:44:31 CST
![]() |
![]() |