Search found 53125 matches

by ray.wurlod
Sun May 27, 2007 7:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Controller Problem: Error Calling DSRunJob Code=-99
Replies: 2
Views: 2288

-99 is "general Repostiory error" which means that DataStage can not diagnose it. Chances are that the pipe has filled as some point - the writer to the pipe running faster than the reader from the pipe, thus causing a "broken pipe" condition. Do the individual job logs contain any more useful infor...
by ray.wurlod
Sat May 26, 2007 4:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pls help me to a string into 4 colums
Replies: 9
Views: 1921

... with the "=" character quoted, of course!
by ray.wurlod
Sat May 26, 2007 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loop through all the records in the DB for every record.
Replies: 8
Views: 1745

See what I mean? A specification makes it clearer what your intent is. A full specification would help you (though not us) even more. Is the database Oracle or DB2? If so, you can do this using a sparse lookup in combination with user-defined SQL. Or you might pass the ten key values to a stored pro...
by ray.wurlod
Sat May 26, 2007 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pls help me to a string into 4 colums
Replies: 9
Views: 1921

PPK might be price per kilogram or a style of pistol. SKU typically means stock keeping unit. You don't really need to know what they mean, Maveric.
by ray.wurlod
Sat May 26, 2007 5:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting to Designer - slow
Replies: 4
Views: 1251

Probably all the extra work that has to be done to verify the identity of the domain user that is mapped to the DataStage user. Are your servers on separate machines? Are they or the network busy?
by ray.wurlod
Sat May 26, 2007 5:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Increasing sort "restrict memory size" on non-sort
Replies: 2
Views: 901

Yes there is: APT_TSORT_STRESS_BLOCKSIZE
Minimum is 1MB.
by ray.wurlod
Sat May 26, 2007 5:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loop through all the records in the DB for every record.
Replies: 8
Views: 1745

I think what you're seeking to do is a join, best accomplished with a Join stage. But I'm not sure, which I why I suggested that a specification is the first thing you need - I don't think you're sure either.
by ray.wurlod
Fri May 25, 2007 3:00 pm
Forum: General
Topic: PX Ochestrate Lookup
Replies: 7
Views: 1842

You need to declare them as Key on the DB2 link. "Key" in this context means "lookup key" rather than "primary key".
by ray.wurlod
Fri May 25, 2007 2:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loop through all the records in the DB for every record.
Replies: 8
Views: 1745

Build stage probably won't help all that much. What you need first is a specification. You can generate the computed comparison value in an upstream Transformer stage, before attempting the lookup/join/merge. Is the comparison against one column in every row, or against more than one column? In the ...
by ray.wurlod
Fri May 25, 2007 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring in PE
Replies: 2
Views: 907

Substrings() is not the preferred mechanism in server jobs, as it includes code for dealing with multi-valued data. The square bracket notation is the preferred method in server jobs, as it is somewhat more efficient. Beware, in parallel jobs, that the first ("start") argument for substring is one-b...
by ray.wurlod
Fri May 25, 2007 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential stage properties
Replies: 8
Views: 2741

Import the table definition from the sequential file. Fiddle about on the Format tab until Preview shows the correct data. Then tidy up column names, data types, descriptions on the Define tab. In the Sequential File stage, set "First Line is Column Names" property correctly. On the Format tab click...
by ray.wurlod
Fri May 25, 2007 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why we use UNICODE
Replies: 7
Views: 3023

Arabic script isn't complex. 8)
by ray.wurlod
Fri May 25, 2007 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Api stage-datastage director log showing wrong information.
Replies: 4
Views: 1374

Thank you for alerting us to a potential bug.
What did your support provider advise?
by ray.wurlod
Fri May 25, 2007 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate schema file
Replies: 1
Views: 1159

You're out of luck. All you can do is to import the Sequential File definition.
RCP, after all, makes columns appear "by magic". You do not have control of metadata, and can perforce not undertake usage or lineage analyses.
by ray.wurlod
Fri May 25, 2007 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage Condition!
Replies: 8
Views: 2946

Use Continue on the first, make the second lookup conditional on one of the returned columns from the first being NULL, and use Drop on the second. Or use Continue on the second and filter out the NULLs downstream if you need to count them.