Been there.Originally Posted by tamilselvan
Is that column actually text, or is it a number?
Also, use this method for getting the explain plan ...
It may reveal column constraints that are also being applied as filters -- that can be responsible for high CPU usage and a poor execution plan due to poorly estimated statistics.Code:set autotrace off explain plan for select ... / select * from table(dbms_xplan.display) /




Reply With Quote