The system table OPTIMIZERSTATISTICS can be used to query statistical values that were generated by an UPDATE STATISTICS statement and are stored in the database catalog. Each row of the table describes statistical values of indexes, columns or the size of a table.
OPTIMIZERSTATISTICS
SCHEMANAME |
CHAR(32) |
Name of the schema of the table for which statistical information is available |
OWNER |
CHAR(32) |
Name of the owner of the table for which statistical information is available |
TABLENAME |
CHAR(32) |
Name of the table for which statistical information is available |
INDEXNAME |
CHAR(32) |
Name of the index for which statistical information is available |
COLUMNNAME |
CHAR(32) |
Name of a column for which statistical information is available |
DISTINCTVALUES |
FIXED(10) |
Number of
different values if the current row describes a column or an index with one
column; |
PAGECOUNT |
FIXED(10) |
Number of pages
used by an index if the current row describes an index; |
The system table OPTIMIZERSTATISTICS exists only to enable compatibility with older database versions. Instead of the system table OPTIMIZERSTATISTICS, use the system table OPTIMIZERINFORMATION.