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
Search found 53125 matches
- 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
- 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
- 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
- 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...
- 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
- Thu Jan 19, 2006 3:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Installing Enterprise Edition on an existing 7.5.1a Server
- Replies: 6
- Views: 1494
- 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...
- 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
- Thu Jan 19, 2006 5:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Tranformer query
- Replies: 2
- Views: 806
- Thu Jan 19, 2006 5:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Weird Problem
- Replies: 7
- Views: 1564
- Thu Jan 19, 2006 5:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: error code = -14
- Replies: 5
- Views: 1403
- 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
- Thu Jan 19, 2006 5:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: universe stage
- Replies: 1
- Views: 772
- Thu Jan 19, 2006 5:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Little endian Datatype
- Replies: 3
- Views: 1119
- 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...