Sequencer

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
tech_savvy
Participant
Posts: 48
Joined: Mon Oct 08, 2007 7:12 pm
Location: Sydney

Sequencer

Post 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
Regards
Naveen Kandukuri
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

All that requires in the use of 'OK (Conditional)' triggers between jobs.
-craig

"You can never have too many knives" -- Logan Nine Fingers
Minhajuddin
Participant
Posts: 467
Joined: Tue Mar 20, 2007 6:36 am
Location: Chennai
Contact:

Post by Minhajuddin »

To rephrase what Craig said:

Code: Select all

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

<a href="http://feeds.feedburner.com/~r/MyExperi ... ~6/2"><img src="http://feeds.feedburner.com/MyExperienc ... lrow.3.gif" alt="My experiences with this DLROW" border="0"></a>
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Or if they need to run in a serial fashion:

Code: Select all

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

"You can never have too many knives" -- Logan Nine Fingers
Post Reply