Page 1 of 1

Sequencer

Posted: Tue Jun 17, 2008 6:42 pm
by tech_savvy
Hello,
I am building up the sequence and my requirement is that there are 3 jobs in a sequence for example 1,2 and 3. The 2 and 3 jobs are dependent on 1 so If I run the sequence if first job fails then 2 and 3 should not run.
Please help me out implementing this logic in datastage.

Thanks in Advance

Posted: Tue Jun 17, 2008 7:14 pm
by chulett
All that requires in the use of 'OK (Conditional)' triggers between jobs.

Posted: Tue Jun 17, 2008 7:42 pm
by Minhajuddin
To rephrase what Craig said:

Code: Select all

Job1====(OK Conditional trigger)======>Job2
||
||
(OK Conditional trigger)
||
||
V
J0b3

Posted: Tue Jun 17, 2008 7:51 pm
by chulett
Or if they need to run in a serial fashion:

Code: Select all

Job1 --OK--> Job2 --OK--> Job3