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!

create table as parallel or create table as select /*+ parllel() */

malik_RahulJul 16 2012 — edited Jul 16 2012
Dear Experts,


I have two huge table almost 300 GB each.
create table as 
select * from table t1 ,t2
where t1.row_id=t2.row_id
How to execute this query in parllelism. Withou Parlell it is taking too much time.

like is it should be
create table parallel 15 as 
select * from t1,t2;
or some other way

and what if it there is 3 table to take join from
This post has been answered by sb92075 on Jul 16 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 13 2012
Added on Jul 16 2012
4 comments
723 views