Disable the auto stats job in 11g.

SQL> select client_name,status from Dba_Autotask_Client;

CLIENT_NAME                                                      STATUS
---------------------------------------------------------------- --------
auto optimizer stats collection                                 ENABLED
auto space advisor                                                    ENABLED
sql tuning advisor                                                      ENABLED

SQL> exec dbms_auto_task_admin.disable('auto optimizer stats collection',NULL,NULL);
PL/SQL procedure successfully completed.

SQL> exec dbms_auto_task_admin.disable(client_name =>'auto space advisor',operation => NULL,window_name => NULL);
PL/SQL procedure successfully completed.


SQL>  exec dbms_auto_task_admin.disable(client_name =>'sql tuning advisor',operation => NULL,window_name => NULL);
PL/SQL procedure successfully completed.

Related views related to automated database maintenance tasks:
DBA_AUTOTASK_CLIENT
DBA_AUTOTASK_CLIENT_HISTORY
DBA_AUTOTASK_CLIENT_JOB
DBA_AUTOTASK_JOB_HISTORY
DBA_AUTOTASK_OPERATION
DBA_AUTOTASK_SCHEDULE
DBA_AUTOTASK_TASK
DBA_AUTOTASK_WINDOW_CLIENTS
DBA_AUTOTASK_WINDOW_HISTORY

相关文章:

  • 2021-11-26
  • 2021-11-02
  • 2021-06-05
  • 2021-11-25
  • 2021-06-23
  • 2021-07-10
  • 2021-11-26
猜你喜欢
  • 2021-08-26
  • 2022-01-06
  • 2021-10-03
  • 2021-05-18
  • 2022-12-23
  • 2021-07-28
相关资源
相似解决方案