Tagged Questions

5
votes
2answers
9k views

Will Oracle optimizer use multiple Hints in the same SELECT?

I'm trying to optimize query performance and have had to resort to using optimizer hints. But I've never learned if the optimizer will use more than one hint at a time. e.g. SELECT /*+ INDEX(i ...
4
votes
1answer
371 views

Use Hints for views?

I have a view and I want to query my view like that to hint some index from a base table,can I do that? I mean: --view create or replace view temp_view as select col1,col2,col3 from ...
-2
votes
0answers
51 views

Oracle won't find my index (but works with hints)

I have a table where there is data. The table has an index. My query is fast if I use a hint: select /*+ Index (up AM_IX_TESTRES_RES) */ COUNT (DISTINCT FK_RESS) from Test_results tr, Ross ro where ...