Questions tagged [parallel-query]
3 questions
2
votes
1 answer
Oracle Parallel Query behaviour with IDE tools as SQL Developer or Toad
For a while I've trying to get the time to write this question and explain the issue as best as I can, so forgive me in advance for the long text.
My environment:
Oracle Database 12.2 running on Red Hat 7 ( R.A.C 2 nodes ) - 16CPU and 64GB RAM per…

Roberto Hernandez
- 8,231
- 3
- 14
- 43
0
votes
1 answer
enable_memoize and max_parallel_workers_per_gather problem or bug?
using Postgresql 15.2, I tried any kind of query that join a CTE with a table:
with t as (select t.day from calendar where idtime between 20230101 and 20230224)
select idcell, sum (tmean)
from weather w join t on w.day = t.day
group by…

Tony Zucchini
- 11
- 3
0
votes
1 answer
Query running in parallel in one environment not in other
I have one insert into select query,
like :
INSERT /*+ append */ INTO
select col1,col2...........
from table1,table2(multiple table join)
When I compare plan between prod and UAT, I see UAT is running in 4 DOP but prod is not running in…

Laks
- 95
- 11