Search found 53125 matches

by ray.wurlod
Sun Sep 21, 2008 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to delete job
Replies: 10
Views: 4464

Waiting to see the list_readu result...
by ray.wurlod
Sun Sep 21, 2008 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_SortedGroup2Operator
Replies: 1
Views: 1610

Dump the score of your job and find out where this particular operator is coming from.
Then it might make more sense to try to diagnose/explain the message.
by ray.wurlod
Sun Sep 21, 2008 1:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Conversion Error
Replies: 9
Views: 33040

Looks like a case of "they're generating the alert no matter what", I guess in case the user supplies a string that can't be converted to decimal. Safely ignorable in my opinion; I'd emplace a message handler to demote its severity because of that.
by ray.wurlod
Sat Sep 20, 2008 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File Rejects
Replies: 6
Views: 4313

It is not strictly the compiling that is different, it is the code that is generated that is different.
by ray.wurlod
Sat Sep 20, 2008 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Conversion Error
Replies: 9
Views: 33040

What is the data type of the input column? If this can potentially contain a a string that is too large for Decimal(17,2) - in this case more than 18 characters long - then DataStage will always generate this alert warning.
by ray.wurlod
Sat Sep 20, 2008 6:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Conversion Error
Replies: 9
Views: 33040

How do you know that the stage variable derivation is working? You strip the "," characters in the inner Convert() expression then attempt to convert "," to "," in the outer Convert() expression. What problem (if any) are you having with the derivation expression? What is it producing? What do you e...
by ray.wurlod
Sat Sep 20, 2008 4:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: impact of warning message on oracle table
Replies: 4
Views: 2036

All the answers are there. All you need to do is buy yourself a premium membership, or get your employer to buy it. Premium membership is not expensive, at less than 30c (Rs12) per day. It gives you access to the entirety of premium posters' posts, as well as other benefits. Premium membership is on...
by ray.wurlod
Sat Sep 20, 2008 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SAP Plug-in Information
Replies: 2
Views: 1116

R/3 is not the same thing as ECC, which is probably why the question was asked. Please refrain from answering unless you do actually know the answer. Please also refrain from replying in an untimely fashion unless you have something new to contribute. And please don't "shout" (all capitals). It's qu...
by ray.wurlod
Sat Sep 20, 2008 4:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File Rejects
Replies: 6
Views: 4313

That is simply incorrect.

However it is necessary in the Sequential File to state how NULL is to be represented in the file. This can be done globally (for all fields) or on a per-field basis.
by ray.wurlod
Sat Sep 20, 2008 2:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: impact of warning message on oracle table
Replies: 4
Views: 2036

1) No effect. Something failed, no rows were affected. The message itself tells you this. 2) Maybe but probably not. The Oracle table has one of these data types, your job has the other. Some Decimal values are compatible with Double (for sufficiently small Double and appropriate Decimal precision) ...
by ray.wurlod
Sat Sep 20, 2008 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Funny characters in Sequential file columns of a paralell jo
Replies: 4
Views: 1974

Maybe but, if the data type is Char(10) - which the framework calls string[10] - it will immediately be refilled with the character specified by the APT_STRING_PADCHAR environment variable. The effect is that you can't really trim a Char data type. Trim is only really sensible with VarChar. The fram...
by ray.wurlod
Fri Sep 19, 2008 11:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage related unix command
Replies: 1
Views: 1264

You're joking, surely? Every UNIX command can be used with DataStage. Nor did you specify where you want them sent. Bill Gates, perhaps, to try to convince him that UNIX is best? Sheesh. There is no-one on the DSXchange user list called plz. I suspect you meant to use the word "please". We strive to...
by ray.wurlod
Fri Sep 19, 2008 5:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Functionality of the -WAIT parameter used along with DSJOB
Replies: 2
Views: 2185

If -wait or -jobstatus is specified dsjob -run does not return until the job status changes from "Running". In your example JobName1 runs first, then JobName2 through JobName6 run simultaneously. JobName7 runs only after JobName6 finishes (irrespective of the run status of JobName2 through JobName5)...
by ray.wurlod
Fri Sep 19, 2008 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Left outer join - Nulls - Join Stage
Replies: 4
Views: 2434

To get nulls use left outer join rather than inner join, and make sure that all pertinent columns (including on the intermediate and right inputs) are marked as Nullable.