Search found 53125 matches

by ray.wurlod
Wed Aug 20, 2008 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Auto Partitioning
Replies: 3
Views: 916

Or know the rules. Auto gives: Round Robin if the link is from sequential to parallel or from parallel to sequential. Same if the link is from parallel to parallel with the same degree of parallelism, or Round Robin otherwise. Entire if the link is a reference input link to a Lookup stage. Hash if t...
by ray.wurlod
Wed Aug 20, 2008 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter and Join Stage: without Data
Replies: 3
Views: 1024

You really do need to learn about the score - it's the single most useful diagnostic tool for parallel jobs. It's the osh that's actually run (which is almost certainly not the osh from your design). To get the score, set the environment variable APT_DUMP_SCORE. The score is the most recent entry in...
by ray.wurlod
Wed Aug 20, 2008 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Server Load stage (Datastage type to OLE DB type error)
Replies: 9
Views: 10243

Have you tried using an ODBC stage rather than an OLEDB stage?
by ray.wurlod
Wed Aug 20, 2008 6:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup
Replies: 1
Views: 929

Not a function, but some stage variables. Make sure that the input data are sorted by the keys on which your "duplicate" decision is based, and detect whether each row is the same as or different from the previous one using the stage variables.
by ray.wurlod
Wed Aug 20, 2008 5:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter and Join Stage: without Data
Replies: 3
Views: 1024

Post your score, so we can see where the modify operators are.
by ray.wurlod
Wed Aug 20, 2008 5:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: glibc detected
Replies: 5
Views: 2602

Disable operator combination, run the job again, and post the real error message.
by ray.wurlod
Wed Aug 20, 2008 5:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using STP stage ,I am facing this type of errors.
Replies: 1
Views: 1133

Posting the same question more than once won't get any more or any better answers.

Please refrain from doing so. The other instance is here
by ray.wurlod
Wed Aug 20, 2008 5:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import error
Replies: 4
Views: 1575

myukassign wrote:Hi ray, I gone through the post and I found, i should change the characterset in the code page of the dsx header.

Is that correct?

Yes
by ray.wurlod
Wed Aug 20, 2008 5:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Detailed about Stored procedure stage
Replies: 3
Views: 1660

Have you undertaken a Search of DSXchange for "Could not load dsstpora.so"?
by ray.wurlod
Wed Aug 20, 2008 5:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CLI command dssearch not working properly
Replies: 9
Views: 2613

Dependencies are added to job sequences when you add job activities from the Palette or the Repository. But it appears that this does not occur - or at least not reliably - if you copy/paste a job activity. This is probably a bug.
by ray.wurlod
Wed Aug 20, 2008 5:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ordering links within a job
Replies: 8
Views: 2286

Marginally clearer. You have no option than to use two jobs. One populates the hashed file. The other uses it to feed the reference input link. It can not be readily achieved in one job. But it still appears that you're joining Table A to itself. What am I missing? If this is true, you could do it w...
by ray.wurlod
Wed Aug 20, 2008 5:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Moving server jobs from Windows server to Unix server
Replies: 4
Views: 1503

Try fewer terms and "all terms". Maybe "job" and "migration" would be a good combination.
by ray.wurlod
Wed Aug 20, 2008 5:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get next or previous month from existing one
Replies: 3
Views: 2159

Open each of the supplied transforms and note the expected format of input.

Please also post a message showing how you resolved this, since you have marked the thread as Resolved.
by ray.wurlod
Wed Aug 20, 2008 4:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ordering links within a job
Replies: 8
Views: 2286

Can you explain (in English, not DataStage) what this is intended to accomplish? What populates the hashed file? Is TableA the hashed file? Something like the following may be what you require. Source------>Transformer------>HashedFile (Table A lookup) | | V Source->Transformer->Table A ----...