Search found 81 matches

by blewip
Wed Apr 27, 2005 6:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting $UserStatus from a Parallel Job
Replies: 6
Views: 5053

Thanks cpratima, so you're saying that I need write some c++ code. I have been looking at the Parallel Job Advanced Developers Guide, is this the best one for showing me what to do. I am guessing there is an equivalent to the call that I am using at the moment. In the Server Routine I Call DSSetUser...
by blewip
Wed Apr 27, 2005 4:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting $UserStatus from a Parallel Job
Replies: 6
Views: 5053

Error Message is
Log_Job_Details(BASIC_Transformer_49).#0.BASIC_Transformer_49 (DSSetUserStatus): Error reading Job Status record. JobNo = 46 JobName = Log_Job_Details.#0 WaveNo = 1
by blewip
Wed Apr 27, 2005 4:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting $UserStatus from a Parallel Job
Replies: 6
Views: 5053

Setting $UserStatus from a Parallel Job

Does anyone know how you set the UserStatus from a Parallel Job. I have a routine that calls DSSetUserStatus(Arg1). I can call this from a Server job no problem. However when I use a BASIC transformer in a PX job to call the same routine, it doesn't work. Is there another way to set the UserStatus? ...
by blewip
Mon Apr 25, 2005 4:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating Job Parameters or possible UserVariables
Replies: 7
Views: 1860

I haven't tried this but you might like to. UserVar1 ---> Job1 ---> UserVar2 ---> Job2 ---> Set the initial value in the first UserVariable activity, run the first job, then set the new value in the second UserVariable activity. Let us know if it does what you want. Ray If I could change one of the...
by blewip
Fri Apr 22, 2005 7:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating Job Parameters or possible UserVariables
Replies: 7
Views: 1860

Thanks Craig

I found the following code

Code: Select all

$INCLUDE DSINCLUDE JOBCONTROL.H 
Call DSSetUserStatus(Arg1) 
Ans = 0
And it works a treat.

I sure that UserVariable stage is useful for something though, just can't seem to find it in the documentation.

Cheers
by blewip
Fri Apr 22, 2005 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating Job Parameters or possible UserVariables
Replies: 7
Views: 1860

Updating Job Parameters or possible UserVariables

I have a Sequence that calls 4 jobs. What I would like is that if Job1 updates a parameter, when the Sequence loads Job2 it has the updated parameter. I don't know if I can do this with Job Parameters, I am thinking that I might be able to do this with UserVariables. However I don't know how to upda...