How to know statistics of the index?
634151Apr 14 2009 — edited Apr 14 2009Hi,
When i analyze the table with below command, the table is getting analyzed. I want to know whether the corresponding index also got analyzed when i use the below command or we need to do separatly by use of gather_index_stats command?
TABLE:
DBMS_STATS.gather_table_stats ('XXQP', 'XXQP_SAMPLE', estimate_percent => 30);
INDEX:
DBMS_STATS.gather_index_stats ('XXQP', 'XXQP_SAMPLE_N1', estimate_percent => 30);
Thanks