Oracle® Database Administrator's Guide 11g Release 2 (11.2) Part Number E25494-02 |
|
|
PDF · Mobi · ePub |
Beginning with Oracle Database 11g Release 1, the Scheduler can run jobs based on whether a database is a primary database or a logical standby in an Oracle Data Guard environment.
For a physical standby database, any changes made to Scheduler objects or any database changes made by Scheduler jobs on the primary database are applied to the physical standby like any other database changes.
For the primary database and logical standby databases, there is additional functionality that enables you to specify that a job can run only when the database is in the role of the primary database or a logical standby. You do this using the DBMS_SCHEDULER.SET_ATTRIBUTE
procedure to set the database_role
job attribute to one of two values: 'PRIMARY'
or 'LOGICAL
STANDBY'
. (To run a job in both roles, you can make a copy of the job and set database_role
to 'PRIMARY'
for one job and to 'LOGICAL
STANDBY'
for the other). On switchover or failover, the Scheduler automatically switches to running jobs specific to the new role. DML is replicated to the job event log so that on failover, there is an available record of what ran successfully on the primary database until it failed.
See Also:
"Examples of Setting Attributes" for an example of setting the database_role
attribute
"Example of Creating a Job In an Oracle Data Guard Environment"