Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Parallelism not working in CTAS 12C

3334388Oct 24 2016 — edited Oct 25 2016

Hi All,

I am using CTAS to create a Table with nologging and parallel degree 8 in 12C.

My select statement has got joins of 7 to 8 tables .

Sample CTAS statement

create table temp1 PARALLEL (DEGREE 8) NOLOGGING as SELECT * from

table1,table2,table3,..

where ....

and exists (select 1 from candidate_tableĀ  ct where ct.customer_id = table1.customer_id);

The query is not running in parallel.

Where as on the same server my inserts and select statements are working parallely.

Suggestions Please

Thanks in Advance

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 22 2016
Added on Oct 24 2016
8 comments
1,610 views