Search found 53125 matches

by ray.wurlod
Thu Jan 19, 2006 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to acces a database table with BCI?
Replies: 11
Views: 3706

Yes, I do, though primarily wearing my UniVerse hat rather than my DataStage hat.

You can find a well-documented example, a function to execute any DML statement, here
by ray.wurlod
Thu Jan 19, 2006 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed.....connection is broken 81002??
Replies: 18
Views: 6510

81002 can also occur if the dsrpcd daemon is stopped.

81002 decodes as "dsrpc: No connection."
by ray.wurlod
Thu Jan 19, 2006 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Throw warning from DS Server custom Routine
Replies: 7
Views: 1526

Just put the call to DSLogWarn within the scope of CASE @TRUE (and make sure that Ans is assigned some value that can be handled by its caller, perhaps @NULL or -1.
by ray.wurlod
Thu Jan 19, 2006 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading and Writing to the same hash file
Replies: 2
Views: 1174

On the link that reads from the hashed file specify for read cache "disabled, lock for updates". On the link that updates the hashed file (which ideally should run out of the same Transformer stage, so that it's guaranteed to be done in the same process) do not check the "write cache" box. I don't t...
by ray.wurlod
Thu Jan 19, 2006 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transform Error when checking composite operator: cxx
Replies: 1
Views: 935

It appears that there is some kind of problem with DataStage finding the compiler. Search the forum for an exact match on exit status 256.
by ray.wurlod
Thu Jan 19, 2006 5:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: row out of sequence in aggregator
Replies: 10
Views: 2577

This error message usually arises when you have asserted on the input link of an Aggregator stage that the incoming data are sorted and it turns out that they are not sorted, or not sorted in the order you have specified. Asserting "sorted" on the Aggregator input does not cause sorting to occur; it...
by ray.wurlod
Thu Jan 19, 2006 5:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reconciliation of source data and target data
Replies: 13
Views: 7536

Suggest away, David. You get MKS Toolkit with DataStage 7.5 on Windows. So you can do UNIX stuff.
by ray.wurlod
Thu Jan 19, 2006 5:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tranformer query
Replies: 2
Views: 806

How about a 26 row x 2 column hashed file, setting the result to "D" if the lookup fails?
by ray.wurlod
Thu Jan 19, 2006 5:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird Problem
Replies: 7
Views: 1564

None at all.
by ray.wurlod
Thu Jan 19, 2006 5:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error code = -14
Replies: 5
Views: 1403

$DSHOME/bin/analyze.shm -d
by ray.wurlod
Thu Jan 19, 2006 5:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle look up and Flatfile lookup
Replies: 2
Views: 886

Welcome aboard.

If you have questions about parallel jobs please post on the parallel forum.
by ray.wurlod
Thu Jan 19, 2006 5:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: universe stage
Replies: 1
Views: 772

By default the maximum precision of DECIMAL is 15 (see PRECISION statement in the DataStage BASIC manual, though it claims 9).

Try using FLOAT as the data type. You might also change the uvconfig parameter EXACTNUMERIC to get more precision.
by ray.wurlod
Thu Jan 19, 2006 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Little endian Datatype
Replies: 3
Views: 1119

Not out of the box. It can be done with Oconv() using "MX0C" (or possibly "MB") conversion and rearranging the pairs of bytes.
by ray.wurlod
Wed Jan 18, 2006 11:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to concatenate SQL Query for DataStage
Replies: 2
Views: 2238

SELECT (case when a.DUP_IP_ID is null then a.IP_ID else a.DUP_IP_ID end) || b.NM || b.AR_ID || b.CLS_BAL || b.CNRL_BNK_IDY_CL_ID || c.AR_PPS_TP_ID || b.AR_X_IP_TP_ID FROM ... The || operator performs concatenation in SQL. It's nothing to do with DataStage. If you want to concatenate the columns with...