Analyze Tables
You can use the ANALYZE TABLE
command to store table statistics for Oracle (and many other DBMS) execution plans. A simple version of this script involves estimating statistics using the command:
xxxxxxxxxx
1
analyze table 'TABLE_NAME' estimate statistics
No Comments