Here’re the differences between SQL Query optimizer and RUNSTATS. In DB2, the Optimizer takes informed decisions on the statistics of your tables; the number of rows, indexes, index cardinality, the number of pages consumed, stored in catalog tables. The Optimizer consumes RUNSTATS statistics.
Differences Between Optimizer and RUNSTATS Utility
In this post explained the Optimizer details before it executes SQL Query in three steps:
- DB2 Optimizer Functionality flowchart
- Automated RUNSTATS
- Manual RUNSTATS
1. DB2 Optimizer Features: How does DB2 Optimizer Works

2. RUNSTATS Utility (automated)
- In the above flow, it is clearly stated that Optimizer has access to Statistics, Bind Options, and SQL Query.
- The Optimizer prepares an access-plan to the SQL query. From the snapshot, the Access plan goes to the Visual Explain, which is a tool, you can view the execution in visual mode.
- The collection of statistics is an automated process. So from the developer side, it is nothing to do.
3. RUNSTATS Utility (Manual)
The developer can use the RUNSTATS command on the Table and indexes to update catalog tables (This you need during building SQL query for the first time).
The purpose is to get insights about the Queries (This is useful to issue explain plan command after executing RUNSTATS). So, the developer can fix the query if optimization is needed.
Example:
RUNSTATS ON TABLE employee AND DETAILED INDEXES ALL;
RUNSTATS collects a wealth of information about; Table, and the indexes on the table, such as index “height,” number-of-pages at the leaf level, and more. Gathering this index-related information is controlled using the indexes clause.
Keep Reading
You must be logged in to post a comment.