Search found 42189 matches

by chulett
Wed Jul 19, 2006 1:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: J2EE in Datastage PX
Replies: 4
Views: 1058

aka the 'Java PACK', available as a separate purchase.
by chulett
Wed Jul 19, 2006 1:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: condition in sequencer / jobs
Replies: 8
Views: 1966

Well, technically that's what the Nested Condition stage is for as it's basically a user-defined 'branch' in your job flow. You can also manage this kind of thing with normal triggers. Where does this 'value of one of the output columns of the previous job' that you need to branch based on end up? T...
by chulett
Wed Jul 19, 2006 9:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Transform 09302006 to a valid date
Replies: 16
Views: 3126

It's marked as a Server job.
by chulett
Wed Jul 19, 2006 9:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CLOB datatype error
Replies: 11
Views: 3118

You'd have to check and see what is different from dev to test. Version - client or db? Server settings? Anything other than the data itself, which I'm assuming is different. And if you don't see anything, I'd focus on the nature of the data then.
by chulett
Wed Jul 19, 2006 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting topic tag in uppercase
Replies: 11
Views: 2887

Still don't see any burning reason why UpCase wouldn't be working for you. And you still haven't said what happens when it doesn't "work fine". Posting an example of what comes out that you don't like would help tremendously. Why not just simplify things and get rid of all that extra stuff? No need...
by chulett
Wed Jul 19, 2006 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CLOB datatype error
Replies: 11
Views: 3118

If you know it won't exceed 3500, then there's no reason to use LongVarchar. What happens when you declare it as a simple Varchar of say, size 4000? If that still doesn't work, add a 'CAST' to your source query to cast the CLOB to that type/size.
by chulett
Wed Jul 19, 2006 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatinating three columns
Replies: 6
Views: 1354

Hardly ballistic. :wink: And while I can see mutliple developers doing just that, it would seem to be to be prudent to make mention of the fact... or at least change the wording a little! Otherwise you're just gonna get whacked with the dreaded DPRR - Duplicate Post Removal Request.
by chulett
Wed Jul 19, 2006 6:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting topic tag in uppercase
Replies: 11
Views: 2887

Confusing. What exactly is your problem? You seem to be saying that you get what you want to get. :?

UpCase will work just fine and convert a string to all upper case, so that shouldn't be an issue.
by chulett
Wed Jul 19, 2006 6:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage xe/390
Replies: 6
Views: 1265

And you don't need DS390 to handle packed fields or 'mainframe' data, Server and PX jobs can just as well once the data is on their server. Check out the Complex Flat File (CFF) stage for one way to handle them. came to know that the packed field will get garbage values when it landed in to unix Onl...
by chulett
Wed Jul 19, 2006 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding DataStage TX Map
Replies: 3
Views: 2201

It's only useful if you also own the DataStage TX product. If you do, it lets you run TX 'maps' / jobs from inside a Server (and perhaps PX) job.
by chulett
Tue Jul 18, 2006 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: regarding extracting data from postgresql
Replies: 4
Views: 996

Ok, I recall that now but I do believe it is the only applicable 'stage' answer. So if that's not an option then scripted extractions and loadings it is. :wink:
by chulett
Tue Jul 18, 2006 9:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: regarding extracting data from postgresql
Replies: 4
Views: 996

I'm gonna take a wild guess here and say... ODBC.
by chulett
Tue Jul 18, 2006 7:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sybase and Oracle errors
Replies: 27
Views: 9465

kcbland wrote:As for Sybase, you'll need to do something similar, like set SYBASE environment variable and another one I can't remember, plus set the SHLIBS as well.

SYBASE and SYBASE_OCS.
by chulett
Tue Jul 18, 2006 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger based upon ReturnValue of Routine
Replies: 4
Views: 1035

First thing would be to not pass it a bad filename. :wink:

I'd suggest passing back a negative number if there are errors in the routine. Add a third trigger that checks for a $ReturnValue < 0 and have it go somewhere... bad. The other two should be fine as is.