Hi Gurus,
Can anybody please let me know how to find out when were the optimizer statics updated last time ?
Updated May 18, 2018
Hi Gurus,
Can anybody please let me know how to find out when were the optimizer statics updated last time ?
Comments
SELECT
OWNER,
TABLE_NAME,
NUM_ROWS,
SAMPLE_SIZE,
TO_CHAR(LAST_ANALYZED, 'dd.mm.yyyy hh24:mi:ss') LAST_ANALYZED,
TO_CHAR(LAST_ANALYZED, 'yyyy') LAST_ANALYZED_YEAR
FROM
DBA_TABLES;
Prasad Pithani