Friday 27 August 2010

Aumated Statistics Gathering In 11g

If you are looking for the GATHER_STATS_JOB in Oracle 11g, then stop looking. In 11g, this job is part of the daily Oracle Maintenance window, but it is executed as an autotask. Take a look at this Oracle link.

To check if it exists and enabled, use this simple SQL.

select * from dba_autotask_client where client_name = 'auto optimizer stats collection';

Or, to check the log:

select count(*) from dba_scheduler_job_log where additional_info like '%GATHER_STATS_PROG%';

I hope this wills save you some time.

And also.........

Oracle Database 10g introduced the concept automated maintenance task execution during maintenance windows implemented via a WEEKNIGHT_WINDOW and WEEKEND_WINDOW schedule. This included statistics collection by means of the GATHER_STATS_JOB.

In Oracle Database 11g, the WEEKNIGHT_WINDOW and WEEKEND_WINDOW schedules (defined in Oracle Database 10g) are replaced with daily maintenance windows (such as SUNDAY_WINDOW, MONDAY_WINDOW etc). These were replaced in order to add increased flexibility and manageability. One can query dba_scheduler_windows to check the window definitions.

Automatic Maintenance Tasks (including the automated Optimizer Statistics Gathering task) are defined to execute within these daily windows. Using Enterprise Manager is the preferred way to control Automatic Maintenance Tasks, although the DBMS_AUTO_TASK_ADMIN package can also be used.

'Automatic Maintenance Tasks Management ' is an 11g new feature and was implemented to increase the flexibility of statistics collection and to avoid potential resourcing issue when maintenance jobs run alongside user operations. Maintenance operations can potentially use a lot of resource which may, in extreme cases, affect other jobs. To address this, in 11g, maintenance operations are closely linked to resource manager to manage the resources that are used and share them more efficiently.

From the

Oracle� Database New Features Guide
11g Release 1 (11.1)
Part Number B28279-03

"This feature ensures that work during maintenance operations is not affected and that user activity gets the necessary resources to complete."

By spreading the workload over multiple weeknights and managing the resource usage, this feature provides the flexibility to allow maintenance jobs to complete in a timely fashion and for user operations to be unaffected.

Users are still completely free to define other maintenance windows and change start times and durations for the daily maintenance windows.

No comments: