To start with, I am on 11gR2
SQL> select * from v$version;
BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
PL/SQL Release 11.2.0.3.0 - Production
CORE 11.2.0.3.0 Production
I am attempting to parallelize, using PARALLEL DML, a very large INSERT
statement which bulk loads millions of rows. To achieve this, I enable parallel DML by ALTER SESSION ENABLE PARALLEL DML
. My insert looks like this-
INSERT INTO TAB_NEW (COL1, COL2, COL3, COL4, ...) --32 columns
SELECT COL1,
COL2,
COL3,
....
.... --32 columns selected
FROM TAB_A a, TAB_B b,...
WHERE ....; --A bunch of joins here
I am trying Statement Level parallel DML, like so-
Attempt 1-
INSERT /*+ PARALLEL(16) */ TAB_NEW (COL1, COL2, COL3, COL4, ...) --32 columns
SELECT COL1,
COL2,
COL3,
....
.... --32 columns selected
FROM TAB_A a, TAB_B b,...
WHERE ....; --A bunch of joins here
However, the above doesn't run in parallel. The one's below does-
Attempt 2-
INSERT /*+ PARALLEL(16) */ TAB_NEW (COL1, COL2, COL3, COL4, ...) --32 columns
SELECT /*+ PARALLEL(16) */
COL1,
COL2,
COL3,
....
.... --32 columns selected
FROM TAB_A a, TAB_B b,...
WHERE ....; --A bunch of joins here
OR
Attempt 3-
INSERT /*+ PARALLEL(16) */ INTO TAB_NEW
SELECT COL1,
COL2,
COL3,
....
.... --32 columns selected
FROM TAB_A a, TAB_B b,...
WHERE ....; --A bunch of joins here
Is this happening due to the Column List in the INSERT
statement in Attempt 1?
So the reason why the parallel DML won't execute the query in PARALLEL is because the table
TAB_NEW
had a trigger on it which was enabled. There is restriction onPARALLEL DML
and any parallel DML attempt on that table will only run serial due to the trigger. Once the trigger was disabled theINSERT
ran in parallel.The full list of restrictions can be found here.