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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

parallel insert/select

Status
Not open for further replies.

speedy1

ISP
Apr 10, 2002
1
JP
i have an insert statement i am running in parallel using a parallel hint, i would like to also parallel the select however it uses 2 tables, which table should I use the parallel hint in the select.

insert /*+PARRALLEL(A,4)*/ into A
select b.num,c.num,c.value,c.name,b.name
from b,c
where b.key=c.key
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top