InterviewSolution
| 1. |
Can You Make Collection Of Statistics For Tables Automatically? |
|
Answer» YES. Oracle DATABSE has default, scheduled job "gather_stats_job" that analyses stats on a daily basis during the maintenance window time. There are two scheduled activities related to the collection of Oracle "statistics":
This job can be disabled with this command: EXEC dbms_scheduler.disable(’SYS.GATHER_STATS_JOB’); YES. Oracle databse has default, scheduled job "gather_stats_job" that analyses stats on a daily basis during the maintenance window time. There are two scheduled activities related to the collection of Oracle "statistics": This job can be disabled with this command: exec dbms_scheduler.disable(’SYS.GATHER_STATS_JOB’); |
|