Search found 53125 matches

by ray.wurlod
Mon Sep 07, 2015 6:35 pm
Forum: General
Topic: Competitor for DataStage?
Replies: 8
Views: 3333

Competitor for DataStage?

by ray.wurlod
Mon Sep 07, 2015 5:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join based on variable no of key columns
Replies: 7
Views: 2868

Basically create a separate join for each circumstance and develop logic to determine which result to use.
by ray.wurlod
Mon Sep 07, 2015 5:07 pm
Forum: General
Topic: Update all Parameter Sets to actual values
Replies: 10
Views: 2688

Just one folder is certainly possible. Create an export of just that folder's contents.
by ray.wurlod
Fri Sep 04, 2015 11:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP Leading Zeros
Replies: 6
Views: 7272

That's how DataStage works, and always has. It adds leading and trailing nonsignificant zeroes to the extent specified by the Precision and Scale settings. Don't worry, it's still the same number and will produce the same results in arithmetic. You can only remove the zeroes if the target data type ...
by ray.wurlod
Fri Sep 04, 2015 11:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Representation
Replies: 5
Views: 2200

Check the Transformer stage properties to determine whether you have legacy null handling enabled.
by ray.wurlod
Fri Sep 04, 2015 11:12 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: IA column analysis
Replies: 12
Views: 7836

You have to "create" the virtual table definition first - by specifying the columns and WHERE clause and giving it a name. Once you have saved this it will appear in the list of tables available for running Column Analysis (and, later, the other analyses).
by ray.wurlod
Thu Sep 03, 2015 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runtime error in Job px calling an external routine
Replies: 4
Views: 2016

External routines need to be written in C++, not C.
by ray.wurlod
Thu Sep 03, 2015 4:42 pm
Forum: General
Topic: How do I create a basic Sequencer?
Replies: 16
Views: 4631

You can use a sequence. Try using job activities without links, to see whether they wait - the sequence is supposed to start as many jobs as are eligible and wait for any of them to finish. I just checked this on a version 8.5 system and, indeed, that's what happens - three jobs running simultaneous...
by ray.wurlod
Thu Sep 03, 2015 4:40 pm
Forum: General
Topic: does datastage install logs shows whether -force command
Replies: 3
Views: 1655

You should have read access to the install log. The product should have been installed by root with umask 002.
by ray.wurlod
Thu Sep 03, 2015 4:39 pm
Forum: General
Topic: DSJS.RUNFAILED not working in custom trigger
Replies: 9
Views: 3131

In the sequence job properties do you have automatic handling of job failures enabled? Try disabling it.
by ray.wurlod
Thu Sep 03, 2015 4:36 pm
Forum: General
Topic: Get all child status recursively
Replies: 11
Views: 4632

There are two sets of child jobs; design-time (the job activities in the sequence) and run-time (the jobs that were actually run). How to get these has been discussed in the past on DSXchange so you should be able to find them using a Search.
by ray.wurlod
Wed Sep 02, 2015 9:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: using switch stage filtering different values into one file
Replies: 3
Views: 1549

The problem here is in the operating system, not in DataStage. You are not permitted to have multiple open-for-write calls at the same time for the same file. Run the three outputs into three separate Sequential File stages populating separate files. Use a condition to detect month number and rename...
by ray.wurlod
Wed Sep 02, 2015 9:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage behavior/bug in 11.3?
Replies: 5
Views: 2056

For a left outer join all columns from the right input may be null and therefore must be nullable.

To be transferred to the output without default values being invoked, those output columns must also be nullable.

If that wasn't enforced in version 8.1 it should have been.
by ray.wurlod
Wed Sep 02, 2015 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage behavior/bug in 11.3?
Replies: 5
Views: 2056

Are all columns on the right input (as well as output columns derived from them) set nullable?
by ray.wurlod
Wed Sep 02, 2015 4:48 pm
Forum: General
Topic: DSJS.RUNFAILED not working in custom trigger
Replies: 9
Views: 3131

What is the actual exit status (e.g. from Director) of Job1 ?

In your scenario, if Job1 finishes with any status other than the two explicitly mentioned, Job2 will not be triggered. This includes not only DSJS.RUNOK (which is your intention) but also any other status such as DSJS.CRASHED.