how to run Datastage job in routine

A forum for discussing DataStage<sup>®</sup> basics. If you're not sure where your question goes, start here.

Moderators: chulett, rschirm, roy

Post Reply
bobbysridhar
Premium Member
Premium Member
Posts: 41
Joined: Sun Mar 09, 2008 8:12 pm

how to run Datastage job in routine

Post by bobbysridhar »

Hi,
can some one tell me how to run Datastage job in routine
k.v.sreedhar
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Search here or in your documentation for the UtilityRunJob function.
-craig

"You can never have too many knives" -- Logan Nine Fingers
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

DSAttachJob()
DSSetParam()
DSRunJob()
DSWaitForJob()
DSGetJobInfo()
DSDetachJob()

and probably others.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Ack... or that, I answered too quickly. Depends on if you need to run a specific job or jobs from a routine or if you need to run one job for every row passing through a job, which honestly doesn't requite a routine. Ray's answer is more appropriate for the question as asked...
-craig

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