Search found 37 matches

by devnull
Tue Apr 25, 2006 11:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Osh: What is it good for?
Replies: 9
Views: 4243

Osh: What is it good for?

What is the purpose of the osh script that is generated in a DataStage job compile? Can it be used with the osh engine? Or is it just for nostalgic purposes?
by devnull
Thu Apr 06, 2006 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before Routine and parameters passed on the command line
Replies: 10
Views: 3339

controlling jobs and setting parameters

My question remains unanswered. Perhaps I am not posing it clearly enough. The code I posted earlier is in a before-routine that retrieves database connection information and sets corresponding parameters in the current job. I am using undocumented datastage variables and constructs to set those par...
by devnull
Thu Apr 06, 2006 10:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before Routine and parameters passed on the command line
Replies: 10
Views: 3339

job sequences, routine activities and job activities

What would be most recommended if special constants and variables will not be available in future releases? I am currently using a before routine to get database connection information for a given table. The routine then sets the connection parameters for a DB2 stage. Can I use a job sequence with a...
by devnull
Thu Apr 06, 2006 9:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation of job using command line
Replies: 2
Views: 2419

Re: Compilation of job using command line

We also use a scheduler to run DataStage jobs with dsjob. We have a shell wrapper function that calls dsjob with -run -mode RESET prior to calling dsjob with -run -mode NORMAL Hi, How can we compile a project/job from command line on UNIX OS. We are in the process of automating the jobs using schedu...
by devnull
Wed Apr 05, 2006 12:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before Routine and parameters passed on the command line
Replies: 10
Views: 3339

That's a shame

It's ashame that may not work in the next release. I have another block of code that lets me set parameters for the job in the before routine: Writev ParamValues On DSRTCOM.RTSTATUS.FVAR, StatusId, JOB.PARAM.VALUES On Error Release DSRTCOM.RTSTATUS.FVAR, JobName On Error Null ErrorCode = 5 Call DSLo...
by devnull
Wed Apr 05, 2006 9:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before Routine and parameters passed on the command line
Replies: 10
Views: 3339

Nevermind

I was accessing the parameter before the READV statement. I had the following lines of code, which was merely returning the default values of DataStage parameters. ParamValues = STAGECOM.JOB.CONFIG<JOB.PARAM.VALUES> env_flag = ParamValues<1,ParamPos> In the following code block, the READV statement ...
by devnull
Wed Apr 05, 2006 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before Routine and parameters passed on the command line
Replies: 10
Views: 3339

Before Routine and parameters passed on the command line

How does a before routine process parameters passed in the command line? I can get it to read default values but not what is passed via the command line?