Search found 53125 matches

by ray.wurlod
Tue Oct 09, 2007 2:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing values between jobs of a job sequencer
Replies: 4
Views: 4009

You can use user variables (see User Variables in job sequences). You can also use the $UserStatus activity variable downstream of a Job activity.
by ray.wurlod
Tue Oct 09, 2007 2:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a way to turn off the "Run" button in Dir
Replies: 9
Views: 1827

Create a before-job subroutine that checks whether the job is being run under control. If it is not, set the error flag (ErrorCode argument) to a non-zero value, and log a message indicating that the job can not be run in isolation.
by ray.wurlod
Tue Oct 09, 2007 2:07 pm
Forum: General
Topic: String Search for Numeric
Replies: 2
Views: 1211

Use the DIGITS Transform.
by ray.wurlod
Tue Oct 09, 2007 2:06 pm
Forum: General
Topic: EXPORTING ROUTINE
Replies: 12
Views: 3590

Exporting a single routine using the command line is not possible.
by ray.wurlod
Tue Oct 09, 2007 3:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Plug-ins instalation & configuration
Replies: 11
Views: 2770

It's called InstConf.pdf and it's to be found on each machine on which DataStage client is installed, at C:\Program Files\Ascential\DataStage7.5\Docs (if you installed into the default location).
by ray.wurlod
Tue Oct 09, 2007 3:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to get the name of a job in a routine
Replies: 2
Views: 823

Incorporate the following code at the top of your routine.

Code: Select all

$IFNDEF JOBCONTROL.H
$INCLUDE DSINCLUDE JOBCONTROL.H
$ENDIF

Recompile the routine, and all will be well.

The header file JOBCONTROL.H contains definitions for all the mnemonics for constants used in the DataStage API.
by ray.wurlod
Tue Oct 09, 2007 3:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file handling
Replies: 12
Views: 2573

Yes that is correct, because the two caches are separate. Disable cache and set "lock for update" in your job design.
by ray.wurlod
Tue Oct 09, 2007 3:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need help for XML input stage and XML output stage ver 7.5
Replies: 8
Views: 1310

Try asking specific questions on DSXchange. DSXchange is not intended to be a substitute either for training or for support. It is a user forum only. Start a new thread for each new question.
by ray.wurlod
Tue Oct 09, 2007 12:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how can i convert 2 rows into 1 rows
Replies: 3
Views: 1229

Stage variables in Transformer stage, detecting change of key value and populating the appropriate fieds (change if non-zero). Output second row only.
by ray.wurlod
Tue Oct 09, 2007 12:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EE job failure message: Input buffer underrun
Replies: 5
Views: 4849

The run that had the failure had a buffering problem (shortage of memory? I/O device?) - the run that did not have the failure also did not have the buffering problem. These intermittent faults are the hardest to diagnose!
by ray.wurlod
Tue Oct 09, 2007 12:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need help for XML input stage and XML output stage ver 7.5
Replies: 8
Views: 1310

There is online help, there are manuals and there is the Search utility in this forum.

Do you want one of us to take your interview and/or certification exam too?
:roll:
by ray.wurlod
Tue Oct 09, 2007 12:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file handling
Replies: 12
Views: 2573

For less than 30c per day you can purchase premium membership which will allow you to read fully answers by the five premium posters and to have access to a greater range of the training and other materials offered by DSXchange. All revenue raised from premium memberships is devoted to hosting and ...
by ray.wurlod
Tue Oct 09, 2007 12:39 am
Forum: General
Topic: PX job Environment variable settings issue
Replies: 2
Views: 2267

Looks to me like your scheduler (AutoSys) is changing the PATH environment variable to suit its own purposes - putting itself up front. DataStage jobs pick theirs up from the dsenv script. For whatever reason (primarily because AutoSys works via dsjob command) the PATH environment variable is not be...
by ray.wurlod
Tue Oct 09, 2007 12:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file handling
Replies: 12
Views: 2573

No, they'll write at the same time. It's only when the Hashed File stage as an input link and an output link that what your vendor calls "dangerous" occurs, or when you're writing to the hashed file in one stage with write cache enabled and reading from the hashed file in another stage with read cac...
by ray.wurlod
Mon Oct 08, 2007 11:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Combining 6 outputs into 1
Replies: 4
Views: 926

Put a Column Generator stage on each left input link to generate the six columns. Map the relevant column only from the right input to the output. Run all these through a Funnel stage then through a Transformer or Aggregator stage to select the appropriate value.