Search found 42189 matches

by chulett
Wed May 20, 2009 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connection pooling
Replies: 6
Views: 2134

Your questions appear unconnected. Are they for any interview ? yes..... Well, at least that's an honest answer. Problem is we're not here to answer interview style questions and make someone appear to know something they in fact do not. We're more than happy to help solve legitimate problems, howe...
by chulett
Wed May 20, 2009 6:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How are jobs implemented internally?
Replies: 3
Views: 1296

Why do you think you 'have to' know this? :?
by chulett
Wed May 20, 2009 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement sorting on Server Job?
Replies: 2
Views: 961

Moderator, please move to the Server forum.
by chulett
Wed May 20, 2009 6:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement sorting on Server Job?
Replies: 2
Views: 961

As noted, via the Sort stage and you can click the Help button in the stage for usage notes. Biggest thing is to understand the 'Sort Key' syntax.
by chulett
Wed May 20, 2009 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PROBLEM AFTER UPGRADING FROM V7.5.2. TO V7.5.3
Replies: 5
Views: 2265

Ah... Windows. UNIX wouldn't care. You'll need to add the path separator in the container it seems - I assume you are doing "#par1##filename#" there, yes?
by chulett
Wed May 20, 2009 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KeyMgtGetNextValueConcurrent generating duplicates
Replies: 6
Views: 2003

It doesn't work as advertised? No clue, never actually used it in all these years, prefer Oracle sequences for concurrent work, which I prefer to avoid. What 7.x release are you on, btw?
by chulett
Wed May 20, 2009 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Order of rows in hashed file
Replies: 3
Views: 1583

Short answer is 'no'. Longer answer involves including the record number as a data element and doing an SSELECT or 'sorted select' to bring them back out in the input order. Requires an account-based hashed file, from what I recall, however.
by chulett
Wed May 20, 2009 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Why is Hashed File data changing randomly
Replies: 4
Views: 1707

It's not getting changed. What is your key in the hashed file? How unique is it? You are aware of the 'destructive overwrite', last-one-in-wins way they work, yes?
by chulett
Wed May 20, 2009 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PROBLEM AFTER UPGRADING FROM V7.5.2. TO V7.5.3
Replies: 5
Views: 2265

So, they fixed something that never should have been working. What makes you think your change will 'make all other jobs not run well'? Have your tried it? What happened?
by chulett
Tue May 19, 2009 8:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Validation outside DataStage
Replies: 3
Views: 1811

We ended up switching from an xmlbeans "svalidate" solution as it wasn't catching all of the nit-picky things that Google was in the xml we were generating and sending to them. We would pronounce it valid and they would pronounce it crap. :( Ended up having our Java Boys build something ar...
by chulett
Tue May 19, 2009 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator stage warning message : Implicit conversion
Replies: 6
Views: 11241

Mark the output field of your sum as Nullable: Yes.
by chulett
Tue May 19, 2009 1:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to get all flat files into one flat file
Replies: 6
Views: 1512

As noted, a script would be fairly simple. Do a 'for' loop thru the files, echo the filename to the output file and then cat the file itself. Use '>>' redirection in each case to append rather than overwrite.
by chulett
Tue May 19, 2009 1:07 pm
Forum: General
Topic: SQL ODBC Issue
Replies: 6
Views: 1842

AFAIK, you would need to logon to the UNIX server, cd $DSHOME and view .odbc.ini to check the IP or HostName for your entry. Everything else would be set in the stage. That or attempt to import ODBC metadata from the Manager using the connection.
by chulett
Tue May 19, 2009 12:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to get all flat files into one flat file
Replies: 6
Views: 1512

So... you need to generate it like that from the start or can you generate them separately and then combine them afterwards? The latter is just 'concatenation' in a loop and something you could script. The former... would have to ponder that. :?
by chulett
Tue May 19, 2009 12:38 pm
Forum: General
Topic: SQL ODBC Issue
Replies: 6
Views: 1842

ps. Next question: are you 100% certain the table the job is populating is the exact same one you checked in the analyser tool? Easy to check the wrong database or schema or whatnot.