Search found 42189 matches

by chulett
Tue Mar 15, 2016 12:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage to Oracle connectivity
Replies: 10
Views: 4357

All of the stages like that come with a pdf "Connectivity Guide" which includes the prerequisites / configuration steps you'll need. Dig that up for Oracle and go through it. High level, you'll need an Oracle client on the ETL server with DataStage configured so it knows where to find it. ...
by chulett
Tue Mar 15, 2016 7:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: check value existence in a table
Replies: 5
Views: 2234

Confused? No. And I don't see any kind of 'problem' here. Just... do it. You'll be fine.
by chulett
Mon Mar 14, 2016 10:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: check value existence in a table
Replies: 5
Views: 2234

What exactly do you think is "not quite efficient" about doing a lookup? If you really think so then perhaps a join of the two sources in is order. Compare the two. Hard to say much else since we don't know anything about your data or the source or the volumes involved. And you need to mak...
by chulett
Mon Mar 14, 2016 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Chinese characters
Replies: 2
Views: 1432

Start by doing an exact search here for "Chinese", I just did and got 154 matches - you're not the first person to have this question.
by chulett
Sat Mar 12, 2016 7:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I get the minimum date in the aggregator?
Replies: 10
Views: 5391

Ha! There was no intent to discipline, I was just amused to keep finding your post as I worked my way through all the new posts that morning. :wink:
by chulett
Fri Mar 11, 2016 4:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mathematical functions for larger data types ????
Replies: 8
Views: 2815

Sure... but you only used them on data that the 'normal' functions couldn't handle. :wink:
by chulett
Fri Mar 11, 2016 11:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I get the minimum date in the aggregator?
Replies: 10
Views: 5391

You really decided to spread the love around, eh?

It has been mentioned a number of times over the years, I got 40+ hits when searching for "preserve type" just now. Up by four from yesterday. :wink:
by chulett
Fri Mar 11, 2016 12:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unique records into single line
Replies: 4
Views: 2140

And... the Awk Clinic is back in session. :wink:

ps. What you "need" seems to have changed.
by chulett
Thu Mar 10, 2016 10:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert phone number to E164
Replies: 5
Views: 1840

The link I posted is about doing it in Java and you can certainly leverage the Java Integration stage in DataStage to do that.
by chulett
Thu Mar 10, 2016 10:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error writing to named pipe
Replies: 5
Views: 4339

There's a number of factors since many UNIX processes can leverage the /tmp space. If you've moved it elsewhere and still have the issue you could be seeing a problem with the connector itself. Unfortunately all the "32" means is "broken pipe" which doesn't really tell us anythin...
by chulett
Thu Mar 10, 2016 10:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error writing to named pipe
Replies: 5
Views: 4339

Should have enough space != does have enough space. Necessarily. Monitor the space during the load to be certain. Then we can move on to other possible causes.

The named pipe is used to transport the data through the ETL server.
by chulett
Thu Mar 10, 2016 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mathematical functions for larger data types ????
Replies: 8
Views: 2815

Those functions are documented in the BASIC manual and from what I recall are just for basic math: SADD, SSUB, SMUL and SDIV off the top of my aging head. I was just wondering if there is anything remotely similar on the PX side...
by chulett
Thu Mar 10, 2016 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mathematical functions for larger data types ????
Replies: 8
Views: 2815

The Server side of the world has "string" functions to do things like math on large numbers, is there any equivalent here?
by chulett
Thu Mar 10, 2016 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert phone number to E164
Replies: 5
Views: 1840

You are going to have to roll your own, I would imagine. A quick search of the digital world shows lots of people have asked this question for many tools, so you should be able to find examples out there for C++ or Java rather easily. Both would be appropriate to be part of a DataStage job. Heck, Ra...