This command analyze all tables, all associated Indexes, all partitions of tables as well as all partitioned indexes. So you don't need to run seperate analyze index.
Originally posted by UNIX DBA I thought that analyzing the tables also analyzed the indexes. For all indexes only analyzes the index.
You are correct. ANALYZE on table automatically collects the statistics for each of the table's indexes and domain indexes, provided that no for_clauses are used.
Bookmarks