A recent posting on OTNcame up with a potentially interesting problem – it started roughly like this:
I have two queries like this:
select * from emp where dept_id=10 and emp_id=15;
select * from emp where dept_id=10 and emp_id=16;When I run them separately I get the execution plan I want, but when I run a union of the two the plans change.