Hi there, all.
Oracle manual about Chain in it's part about chain attributes states the list of following attributes:
completed
state
start_date
end_date
error_code
duration
Can someone then explain me what objects of a chain step are assigned in the code herebelow (source of the code):
DBMS_SCHEDULER.ALTER_CHAIN(
CHAIN_NAME => 'Rosts_JOB_CHAIN',
STEP_NAME => 'Del_from_PVJOURNAL',
ATTRIBUTE => 'PAUSE',
VALUE => false
);
In the code I've reviewed I've met following set of such attributes: PAUSE, SKIP, RESTART_ON_FAILURE, RESTART_ON_RECOVERY
What are they if not attributes? Where can I read about their meaning, usage and find a complete list of 'em?