front-end to DataStage

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
DStageNewbie
Participant
Posts: 11
Joined: Wed Aug 12, 2009 6:05 am
Location: Kansas City

front-end to DataStage

Post by DStageNewbie »

Has anyone built a front-end app to DataStage? An app that would let a user enter job parms and submit the job without having to actually sign on to ds. :?:
Bob
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

I haven't personally, but sure, there are posts here discussing that. The API is published and generally involves using the 'dsjob' function from the command line. The actual code for dsjob is published as well, so some people have coded closer 'to the metal' as well, from what I recall.

A search for "VB" or "Visual Basic" may turn some up, IIRC. :?

Check the Command Line Interface chapter in the Server Job Developer's Guide pdf.
-craig

"You can never have too many knives" -- Logan Nine Fingers
kduke
Charter Member
Charter Member
Posts: 5227
Joined: Thu May 29, 2003 9:47 am
Location: Dallas, TX
Contact:

Post by kduke »

If you have defaults on your job parameters then you do not need to fill them in. There are several who have put parameter values in text files and filled in the values using shell scripts. This is not a simple task.
Mamu Kim
tjr
Participant
Posts: 19
Joined: Wed Jun 15, 2005 6:37 am

Post by tjr »

You do not need to fill the values using shell scripts if you leverage the new parameter sets. at run-time just specify the parameter set value file name. the parsing of the value file and setting the parameters will be done by datastage automatically then. the value file layout is pretty simple, having a line for each parameter of the parameter set, like this:
<param1>=<value1>
..
<paramN>=<valueN>
eostic
Premium Member
Premium Member
Posts: 3838
Joined: Mon Oct 17, 2005 9:34 am

Post by eostic »

Use ISD or RTI and easily have a front end Web Services client application send up the Job parms! :)

Ernie
Ernie Ostic

blogit!
<a href="https://dsrealtime.wordpress.com/2015/0 ... ere/">Open IGC is Here!</a>
Post Reply