1、查看统计信息自动收集任务的开启情况。

select client_name,status from dba_autotask_client;

 

2、查看自动收集任务各个窗口的开启情况。

col optimizer_stats for a20;
col segment_advisor for a20;
col sql_tune_advisor for a20;
set lines 200 pages 200
select window_name,optimizer_stats,segment_advisor,sql_tune_advisor from dba_autotask_window_clients;

DBA_AUTOTASK_WINDOW_CLIENTS displays the windows that belong to MAINTENANCE_WINDOW_GROUP, along with the Enabled or Disabled status for the window for each maintenance task. Primarily used by Enterprise Manager.

 

3、查看当前统计信息自动收集任务具体的窗口时间。

select window_name,repeat_interval,duration,ENABLED from dba_scheduler_windows;

 

4、整个关闭自动统计信息收集任务。

BEGIN
DBMS_AUTO_TASK_ADMIN.DISABLE(
client_name=>'auto optimizer stats collection',
operation=>NULL,
window_name=>NULL);
END;
/

 

5、关闭某个窗口的统计信息收集任务。

先根据 3 查到有哪些窗口,然后禁用。 例如:禁用周二的窗口。

BEGIN
dbms_auto_task_admin.disable(
client_name => 'auto optimizer stats collection',
operation => NULL,
window_name => 'TUESDAY_WINDOW');
END;
/