Oracle : Activation de la tâche d'arrière-plan Auto Space Advisor
If you use an Oracle database, you must complete a post-migration task to enable the Oracle background task called "Auto Space Advisor" after your run the upgrade-profile task during migration using the Configuration Wizard.
Procédure
Entrez le code SQL suivant :
BEGIN
dbms_auto_task_admin.enable(
client_name => 'auto space advisor',
operation => NULL,
window_name => NULL);
END;
/Que faire ensuite
SQL> select status from dba_autotask_client where client_name = 'auto space advisor';