Hi I am selecting from one table which have more than 18M rows and joining it with table B which has about 1M rows.
Query is like
This select take allot of time how can I do parallel query on this?
Thanks for your help
Query is like
Code:
select a.row1,
a.row2,
a.row3,
B.some_row,
a.row4
from
first_table a,
sce_table b
where
a.key = b.key;
Thanks for your help