Tagged Questions

3
votes
6answers
726 views

Oracle 10 optimizer from RULE to COST: why?

Oracle decided to dismiss the rule-based optimizer from version 10g, leaving the cost-based one as the only choice. I think that a rule-based optimizer has the unvaluable positive side of being always ...
2
votes
1answer
1k views

How to increase Oracle CBO cost estimation for hash joins, group by's and order by's without hints

It seems that on some of the servers that we have, the cost of hash joins, group by's and order by's is too low compared to the actual cost. I.e. often execution plans with index range scans ...
1
vote
2answers
127 views

How will Oracle handle a where clause condition comparing against a subquery with a constant result?

Let's say I have the following: select primary_id from myschema.table_a where row_changed_date > ( select last_refreshed from myschema.last_refresh lr ...
1
vote
3answers
509 views

Oracle Anti-Join Execution plan question

We have two tables like so: Event id type ... a bunch of other columns ProcessedEvent event_id process There are indexes defined for Event(id) (PK) ProcessedEvent (event_id, ...