Gathering statistics on dictionary tables (owned by 'sys') is a recommended 10g best practice. The automatic statistics gathering job performs this task, but if we use a customized statistics gathering job and switch off the default automatic job then the recommended strategy is don't switch off the automatic job and configure the value of AUTOSTATS_TARGET to ORACLE instead of AUTO using the procedure DBMS_STATS.SET_PARAM:
BEGIN
DBMS_STATS.SET_PARAM('AUTOSTATS_TARGET','ORACLE');
END;
/
with this configuration we can use our customized job and let the automatic job that runs during the maintenance window gather statistics on dictionary tables.
Saturday, March 29, 2008
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment