Hello!
My application's search is based on some queries grouped through union or intersect operator.
My problem is that I would like to optimize the search and I cannot optimize UNION or INTERSECT operator.
If I add the times of all the queries I get a number infinitely small than the time obtain by the reunion or intersection of these queries.
For example, if I have:
select 1
union (intersect)
select 2
union (intersect)
select 3
etc.
If I add the select1, 2, 3 etc. response time I will get a very small result comparing with the union (Intersect) result time. I cannot use union all because I need to eliminate the duplicates.
Can you give me an advice regarding this optimizing problem?
Thanks in advanced.