No Execution Plan With AUTOTRACE For An INSERT /*+ APPEND */ INTO ...-Statement
The output of SET AUTOTRACE TRACEONLY for the above INSERT Statement results for the execution plan in
Execution Plan
----------------------------------------------------------
ERROR:
ORA-12838: cannot read/modify an object after modifying it in parallel
SP2-0612: Error generating AUTOTRACE EXPLAIN Report
That is an issue of the APPEND hint (cannot query direct-path inserted data immediately after the insert), but there is no chance to do a COMMIT before any AUTOTRACE action, or ?
What can I do to obtain an execution plan?
(Oracle 11.2.0.3)