Automatic gather stats job
check it is on with:
select state, last_start_date from dba_scheduler_jobs where job_name = 'GATHER_STATS_JOB' ;
Switch it on and off with:
exec dbms_scheduler.disable('GATHER_STATS_JOB') exec dbms_scheduler.enable('GATHER_STATS_JOB')
Leave a Reply