Search found 53125 matches

by ray.wurlod
Thu Aug 20, 2009 5:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating common datastage jobs
Replies: 6
Views: 2175

In any case the old paper capacitors leak after a certain age.
by ray.wurlod
Thu Aug 20, 2009 5:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting 1 record into multiple record based on Quantity
Replies: 2
Views: 1096

A fork-join approach would work too.

Split your stream into two. One side runs through an Aggregator to count the rows per key. The two streams are then combined using a Join stage to effect an inner join.
by ray.wurlod
Thu Aug 20, 2009 5:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob path search failure
Replies: 3
Views: 2218

Moderator: please move to parallel forum
by ray.wurlod
Thu Aug 20, 2009 5:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob path search failure
Replies: 3
Views: 2218

Find out where libclntsh.so.10.1 is on your system, then verify whether or not its parent directory is mentioned in the shared library search list (LD_LIBRARY_PATH) used by the DataStage user (that is, the list set up in dsenv script).
by ray.wurlod
Thu Aug 20, 2009 5:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HASH file error does not match expected blink
Replies: 4
Views: 2226

They did a Search and found the solution(s).
by ray.wurlod
Thu Aug 20, 2009 4:58 pm
Forum: General
Topic: Sequencor aborted due to previous unrecoverable error's
Replies: 2
Views: 1320

The solution is discovery. Go to the related logs if necessary, and discover what those unrecoverable errors were, then correct whatever it was that caused them.
by ray.wurlod
Thu Aug 20, 2009 4:55 pm
Forum: IBM QualityStage
Topic: Standardizing Indonesian Names
Replies: 4
Views: 1825

Yes and no. QualityStage probably is the tool, because you will get both of the "standard" spellings (the ones left over from Dutch rule and the allegedly simpler Bahasa Indonesia spellings), but you will also get mis-spellings, and that's where the uncertainty thresholds will be useful. I...
by ray.wurlod
Wed Aug 19, 2009 11:55 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: save Derivation
Replies: 2
Views: 5112

Welcome aboard.

This forum is for WebSphere Transformation Extender. Is that the product that you are using?

If not, please post in the DataStage Enterprise Edition forum.
by ray.wurlod
Wed Aug 19, 2009 6:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs Aborts
Replies: 7
Views: 3100

Vista is definitely not a supported O/S. Further, you will probably find that MKS Toolkit's telnet service logs in first, so that the DataStage telnet service can not get port #23 when it tries to start.
by ray.wurlod
Wed Aug 19, 2009 6:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController,1: Null string argument.
Replies: 15
Views: 22610

You can inspect the generated C++ code in the RT_SCnnn directory, where nnn is the job number.

In theory it's left to right, as Craig believes, but the optimizer may make "decisions" that change that. Inspecting the generated code is the only way you can be sure.
by ray.wurlod
Wed Aug 19, 2009 6:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The provided query statement did not prepare correctly
Replies: 10
Views: 3101

fbello wrote:My development DBA is on vacation and the production DBA , i can't join him.
I think also that your company has an issue with management of vacation times/access to alternates when critical roles are not being performed.
Bonne chance!
by ray.wurlod
Wed Aug 19, 2009 6:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: first() implemation in datastage
Replies: 5
Views: 3040

Remove Duplicates stage is the easiest way to capture the first record of each group.

As noted, the keyChange column that can be generated by a Sort stage can also be used to flag the first record in each group.
by ray.wurlod
Wed Aug 19, 2009 6:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: setting CC in notification(mail) activity
Replies: 6
Views: 2509

Workaround might be to send to a list address that redistributes the email appropriately.
by ray.wurlod
Wed Aug 19, 2009 6:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: update flat file
Replies: 7
Views: 2129

You can always "pretend" by using an ODBC driver for text files.

This is an excellent solution if you're billing by the hour! :wink: (It is likely to be very slow on large files.)
by ray.wurlod
Wed Aug 19, 2009 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 API Stage - Warnings
Replies: 4
Views: 5958

You appear to have a mix of WCHAR and CHAR data types, and to be transferring data between them. WCHAR may require more than one byte per character for storage; DataStage is alerting you to that fact and the subsequent possibility that data conversion errors might occur. If you are 100% confident th...