Info
Content

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:

analyze table 'TABLE_NAME' estimate statistics
No Comments
Back to top