Job Sequencer

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
dj
Participant
Posts: 78
Joined: Thu Aug 24, 2006 5:03 am
Location: india

Job Sequencer

Post by dj »

Hi,

I just want to do the following seq of jobs.

job A--->job B---> Job c----->Job D
| | |
Job A1--->Job B1--> Job c1--> Job D1

Job B1 should start only after completion of both job A1 and Job b.
can any one suggest me by using what stage i will able to validate this condition.

thanks in advance

- dj
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Yes, a Sequencer is what you need in your job sequence.

Were you to have wrapped your design in Code tags it would have been easier to understand. Please do that.

Code: Select all

JobA  ----->  JobB  ------------------------>  JobC  ---->  JobD
  |            |                                |            |
  |            |                                |            |  
  V            V                                V            V  
JobA1  ----> Sequencer ---->  JobB1  -------> JobC1  ---->  JobD1
              (All)
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply