[Solved] What’s the difference between analyzing a table and rebuilding the index in oracle SQL?
A few things to discuss here 1) ANALYZE TABLE COMPUTE STATISTICS; Don’t use this command. It is obsolete. It is designed to collect information on the table to allow queries against it to be run in the best fashion. Use DBMS_STATS.GATHER_TABLE_STATS instead. And that’s just an obvious lead in to that you should have a … Read more