how to check last gather stats on table in oracle

Solutions on MaxInterview for how to check last gather stats on table in oracle by the best coders in the world

showing results for - "how to check last gather stats on table in oracle"
Giulia
16 Mar 2016
1SELECT ST.TABLE_NAME, ST.PARTITION_NAME, HIGH_VALUE, ST.NUM_ROWS, 
2	   ST.BLOCKS, ST.LAST_ANALYZED
3FROM DBA_TAB_STATISTICS ST
4LEFT JOIN DBA_TAB_PARTITIONS PAR
5ON PAR.TABLE_NAME = ST.TABLE_NAME AND PAR.PARTITION_NAME = ST.PARTITION_NAME
6WHERE ST.OWNER = 'MY_OWNER'
7  AND ST.TABLE_NAME = 'MY_TABLE'
8ORDER BY PARTITION_NAME;