Link to home
Start Free TrialLog in
Avatar of bibi92
bibi92Flag for France

asked on

Query execution plan change in oracle 11G

Hello

Why the plan of execution for the same request launched  in parallel but can change?
How to resolve of problem because there is an impact on the performances?
Thanks
bibi
ASKER CERTIFIED SOLUTION
Avatar of Qlemo
Qlemo
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bibi92

ASKER

How can see that I have no accurate table and index stats on oracle 11G?
Thanks
bibi
This should get you started:
   SELECT table_name, last_analyzed FROM user_tables;
   SELECT table_name, index_name, last_analyzed FROM user_indexes;
Avatar of bibi92

ASKER

Thanks bibi