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
srinivenigalla
Participant
Posts: 35
Joined: Thu Aug 11, 2005 5:21 pm

SEQUENCER

Post by srinivenigalla »

What does "Allow multiple instance" do and how do we know whether we have multiple INSTANCES OR NOT
Raghumreddy
Participant
Posts: 24
Joined: Fri Aug 26, 2005 3:52 pm
Contact:

Re: SEQUENCER

Post by Raghumreddy »

You can change the post title to Multiple instance

Check the job properties for the multiple instances check bos.
If that is On then job can run multiple instances.

Say you have a job that run with one set of data. split that data into multiple files and give each file as source to each job . you can run the jobs with invocationID.

You can run the job multiple times with different input files.

HTH
Raghu
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

One job can only run once at a time unless you specify that it is multi-instance. There are considerations you need to cater for when writing a multi-instance job, i.e. such as making sure that you don't write to the same sequential file as the other instances of the job.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

You can find out from DSGetJobInfo() whether a job is multi-instance or not.
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