I had some fun recently with a Oracle database choosing a poor execution plan.
The problem was with a view which had a column which was explicitly cast to a value.
For example:
create table vw_temp
as
select
cast(ID) as NUMBER(19,0) as ID,
Name varchar2(50)
from very_large_table a
join large_table b on a.ID = b.ID
where Name = ‘whatever’ ;
Oracle in this case was unable to use the ability to push predicates down and make the joins more optimized.
So the moral of the story is be careful if you are doing casts/converts or any function which will change the column in a view.
Have Fun
For more info about predicate push down have a read of this blog entry
https://blogs.oracle.com/optimizer/entry/basics_of_join_predicate_pushdown_in_oracle
Or this short entry in the documenation
http://www.oracle.com/pls/db102/to_URL?remark=ranked&urlname=http:%2F%2Fdownload.oracle.com%2Fdocs%2Fcd%2FB19306_01%2Fserver.102%2Fb14211%2Foptimops.htm%23i55050