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

Understanding Parallel hints on Tables and parallels in Create table as well.

Status
Not open for further replies.

lella2015

Programmer
Nov 6, 2015
1
GB
Hi Guys,

I need some help in understanding how parallels work in different situations.

I got table A, B with parallel 10 degrees each.

When I run the below DML how it works and how many processors the DB look for

Create Table C PARALLEL (DEGREE 10) AS
SELECT A.* FROM A
JOIN B ON (A.COL1=B.COL1)

My server got 50 processors.

Can someone tell me what will be the performance of the query and what parallels I can use to tune it.

Regards,
Suresh
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top