To analyze the TABLES/INDEXES of a schema at one stroke



EXEC DBMS_STATS.GATHER_SCHEMA_STATS(USER,CASCADE=>TRUE);

Are the tables/indexes are being analyzed or not?

SELECT TRUNC(LAST_ANALYZED),COUNT(1) FROM DBA_TABLES
WHERE OWNER='DOTSOFT'
GROUP BY TRUNC(LAST_ANALYZED);

SELECT TRUNC(LAST_ANALYZED),COUNT(1) FROM DBA_INDEXES
WHERE OWNER='DOTSOFT'
GROUP BY TRUNC(LAST_ANALYZED);
 

Post a Comment

And that's all there is to it!

If anyone has any other questions or requests for future How To posts, you can either ask them in the comments or email me. Please don't feel shy at all!

I'm certainly not an expert, but I'll try my hardest to explain what I do know and research what I don't know.

Previous Post Next Post