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
452 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 ...