Script for gathering index stats

set head off
spool dbmsidx.sql
select 'prompt gathering statistics of index '||owner||'.'||index_name,
'exec dbms_stats.gather_index_stats('||chr(39)||owner||chr(39)||','||chr(39)||index_name||chr(39)||');'
from dba_indexes where owner in ('')
order by owner,table_name;
spool off

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