Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Insert statement with Parallel direct load

Status
Not open for further replies.

himridul

Programmer
Jun 23, 2003
62
US
Hi,

I'm running the query below in Explain Plan window:

INSERT /*+ PARALLEL(emp,12) */ INTO emp
SELECT /*+ PARALLEL(t_emp,12) */ * FROM t_emp;

In "Other Tag" option in Explain Plan ,
For SELECT statement it's showing PARALLEL_TO_SERIAL
But
For INSERT statement it's showing Nothing (NULL).

As far I know , INSERT /*+ PARALLEL(emp,12) */ INTO emp
means PARALLEL execution mode with APPEND (default for PARALLEL).

Then why it's not showing in EXPLIAN PLAN ?
Is the INSERT statement not running in PARALLEL?

Any help will be highly appreciated ..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top