2.173 ALL_IND_STATISTICS
ALL_IND_STATISTICS
displays optimizer statistics for the indexes on the tables accessible to the current user collected using the DBMS_STATS
package.
Related Views
-
DBA_IND_STATISTICS
displays optimizer statistics for all indexes in the database. -
USER_IND_STATISTICS
displays optimizer statistics for the indexes on the tables owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the index |
|
|
|
Name of the index |
|
|
|
Owner of the indexed object |
|
|
|
Name of the indexed object |
|
|
|
Name of the partition |
|
|
|
Position of the partition within the index |
|
|
|
Name of the subpartition |
|
|
|
Position of the subpartition within the partition |
|
|
|
Type of the object:
|
|
|
|
B-Tree level |
|
|
|
Number of leaf blocks in the index |
|
|
|
Number of distinct keys in the index |
|
|
|
Average number of leaf blocks per key |
|
|
|
Average number of data blocks per key |
|
|
|
Indicates the amount of order of the rows in the table based on the values of the index.
|
|
|
|
Number of rows in the index |
|
|
|
Average number of blocks in the buffer cache |
|
|
|
Average cache hit ratio for the object |
|
|
|
Sample size used in analyzing the index |
|
|
|
Date of the most recent time the index was analyzed |
|
|
|
|
|
|
|
Indicates whether statistics were entered directly by the user ( |
|
|
|
Type of statistics lock |
|
|
|
Whether statistics for the object are stale or not |
|
|
|
The value is For a global tempoary table, the possible values are:
See Oracle Database PL/SQL Packages and Types Reference for information about using the |
See Also:
-
Oracle Database PL/SQL Packages and Types Reference for more information about the
DBMS_STATS
package