I have a query using wrong indexes. I can see that with the usage of index there is no easy way for oracle fetch the data.The query is framed by a vendor software, and cann
There are at least 11 ways to control a plan without modifying the query. They are listed below roughly in the order of usefulness:
alter session set optimizer_features_enable='11.2.0.3';
. There aren't always helpful parameters. But one of the OPTIMIZER_* parameters may help, or you may be able to change the plan with an undocumented hint or disabling a feature like this: alter session set "_fix_control"='XYZ:OFF';