Rechercher dans ce blog

mardi 20 octobre 2015

job de statistic par defaut:

job de statistic  par defaut:
SQL>  SELECT client_name, status FROM dba_autotask_operation;

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

Faire  un disable

SQL> BEGIN
  DBMS_AUTO_TASK_ADMIN.disABLE(
    client_name => 'auto optimizer stats collection',
    operation => NULL,
    window_name => NULL);
END;
/    2    3    4    5    6    7

PL/SQL procedure successfully completed.

SQL> SELECT client_name, status FROM dba_autotask_operation;

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

Aucun commentaire:

Enregistrer un commentaire