Search found 53125 matches

by ray.wurlod
Thu Jun 23, 2011 11:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: comparing two dates
Replies: 4
Views: 1307

Parallel. StripWhiteSpace() is not available in server Transformer stage.
by ray.wurlod
Thu Jun 23, 2011 11:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a clarification
Replies: 5
Views: 2345

Re: Need a clarification

Visit the stage properties of the Transformer stage and tell us whether its Propagate property is set to Set, Clear or Default. It's on the Advanced tab. And, if it's not Clear, then your code reviewer is wrong, wrong, wrong. You can prove this by inspecting the score. As to question 2, if the parti...
by ray.wurlod
Thu Jun 23, 2011 11:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a clarification
Replies: 5
Views: 2345

Re: Need a clarification

Bicchu wrote:Hi All, I need this clarification from all of you.
So, you want 38309 replies. Is this correct?
by ray.wurlod
Thu Jun 23, 2011 9:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: comparing two dates
Replies: 4
Views: 1307

You ultimately do need a consistent date format, so there's probably not much more you could do. Perhaps losing the If test would be slightly more efficient, for example on the reference link

Code: Select all

Right("00":InLink.TheDMYdate, 11)
by ray.wurlod
Thu Jun 23, 2011 9:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To repeat sibling node in the children nodes of the sibling
Replies: 3
Views: 1295

What (if anything) have you specified as the repetition element?
by ray.wurlod
Thu Jun 23, 2011 5:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic transformer stage..
Replies: 5
Views: 1221

James beat me to it. Just occasionally I have to work for a living and ignore DSXchange for a few minutes! :lol:
by ray.wurlod
Thu Jun 23, 2011 5:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it possible to convert the OSH to JOB?
Replies: 3
Views: 1132

I won't be running it this year. However other organizations have, and maybe will be. However, this is not under my control - I merely license the materials to them, as registered training providers. Contact me off line for more information on which organizations these are.
by ray.wurlod
Thu Jun 23, 2011 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic transformer stage..
Replies: 5
Views: 1221

It will, because it needs direct access to the server engine.
by ray.wurlod
Thu Jun 23, 2011 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not in or not between condition:
Replies: 11
Views: 4467

Exclude them from what? What are you trying to accomplish?
by ray.wurlod
Thu Jun 23, 2011 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture record count and send it to the table.
Replies: 2
Views: 1129

Do the inserted rows include a run identifier? If so, a second job that counts those rows would do it for you.
by ray.wurlod
Thu Jun 23, 2011 4:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it possible to convert the OSH to JOB?
Replies: 3
Views: 1132

Yes, but only manually.

This is a lab exercise in my Advanced Parallel Job Techniques course.
by ray.wurlod
Thu Jun 23, 2011 4:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: update very slow
Replies: 4
Views: 2545

Update is always slow because of the extra work it has to do. Is every column in the WHERE clause supported by an index? Is the index being used?
by ray.wurlod
Thu Jun 23, 2011 4:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best options for Incremental Loading Reusablity
Replies: 3
Views: 1653

One.

Of course you can have more than one running simultaneously, but your question was specifically how many can be started at the same time.

The limit is governed entirely by the resources available on your system, and is almost certainly less than you are hoping for.
by ray.wurlod
Thu Jun 23, 2011 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error selecting the data source in Oracle Connector
Replies: 11
Views: 6037

You need to configure the shared library search path environment variable (LD_LIBRARY_PATH).
by ray.wurlod
Thu Jun 23, 2011 4:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not equal to condition in lookup
Replies: 7
Views: 2453

Default Lookup will work like left outer join (using Continue rule) or inner join (using Drop rule). It can not perform full outer join.