DBMS SCHEDULER : Nested Chains
697372Jun 16 2009 — edited Jun 16 2009Hi,
I am working on Oracle 10.2 version. I have a requirement where a chain step should point to the another chain and this second chain should have the repeat interval of every 5 mins.
Ideally I would like to have the chain as following.
Rule_1
Condition = 'TRUE'
Action= START PROGRAM_1
Rule_2
Condition ='PROGRAM_1 SUCCEEDED'
Action = START PROGRAM_2
Rule_3
Condition = 'PROGRAM_2 SUCCEEDED'
Action = START CHAIN_2
Rule_4
Condition = 'PROGRAM_2 SUCCEEDED '
Action = START PROGRAM_3
Rule_5
Condition = 'PROGRAM_3 SUCCEEDED '
Action = END
Basically, after the successful completion of program_2, chain_2 should start and from then chain_2 has to restart for every 5 mins.
Is this possible?
Thanks.