Search found 42189 matches

by chulett
Mon Oct 17, 2011 5:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Avoiding Multiple Lookup
Replies: 8
Views: 2035

Does this need to be a PX job? There's an equivalent to the unconnected lookup on the Server side, hence the question. Not saying there isn't a PX answer to this, but nothing is popping into my head at the moment other than the Server solution.

Out of curiousity, what 8.x version do you have?
by chulett
Mon Oct 17, 2011 5:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in implementing join logic
Replies: 11
Views: 3408

If your join key columns are null on one side or the other, then you'll need to look into some flavor of a outer join. An inner join will never return any records where join keys are null.
by chulett
Mon Oct 17, 2011 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using RCP in a job that has multilpe join stages
Replies: 3
Views: 1436

So, look closer at your job design, see if anything about it can be made more... optimal.
by chulett
Mon Oct 17, 2011 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning level in Datastage jobs
Replies: 2
Views: 3317

As you've seen, the Director warning default is set per user. There is no global / project level setting for this. However, keep in mind the fact that when you productionalize your jobs, they won't be run by hand from the Director under several different userids, but rather either a single one or fr...
by chulett
Mon Oct 17, 2011 7:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate key error in transformer
Replies: 10
Views: 4701

Well... seeing as how your old version had no such built-in function, did your shop perhaps write your own NextSurrogateKey() version? The 8.x version introduces that as an alternative to the Surrogate Key Generator stage.
by chulett
Mon Oct 17, 2011 7:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using RCP in a job that has multilpe join stages
Replies: 3
Views: 1436

RCP has nothing to do with 'reducing the total run time' of a job, it's all about creating more 'generic' jobs.
by chulett
Mon Oct 17, 2011 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in implementing join logic
Replies: 11
Views: 3408

A join stage does a join and you've included more than just join criteria in your specification. This part is the join: D1 left join D2 where D1.C1=D2.C1 and D1.C2=D2.C2 Whereas this part is a filter and something you would need to implement post-join: and D1.C3='' and D1.C4='' Also note that if you...
by chulett
Mon Oct 17, 2011 7:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to retrieve or insert data into DB2
Replies: 13
Views: 4420

kanasai167 wrote:what im trying to do is something like this :
Sequential file ---> DB2 UDB API
What happened with this? That should be a perfectly valid job design, what issues did you have when you tried this?
by chulett
Mon Oct 17, 2011 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_loadlibrary: Win32 error in LoadLibrary of oraoci9.dll
Replies: 8
Views: 3289

Ah... dang, should have thought of that as a possibility, I've had that happen to me as well. Good job on figuring that out. :wink:
by chulett
Sun Oct 16, 2011 4:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage 8.5 Enterprise Edition
Replies: 6
Views: 1731

Now, that's a different question. They were asking if it was possible, not if it was advisable. :wink:
by chulett
Sun Oct 16, 2011 2:47 pm
Forum: General
Topic: User id issues while running a job
Replies: 5
Views: 1186

Anything that works with one userid and not with another screams permission issue. What's different about this third job that hangs versus the other two that work?
by chulett
Sun Oct 16, 2011 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage 8.5 Enterprise Edition
Replies: 6
Views: 1731

They can co-exist on the same server if they support an "itag" installtion. Before this, I would have said no but I seem to recall a recent post where it was noted that the 8.5 release does in fact now support an itag install.

Can anyone confirm or deny?
by chulett
Sun Oct 16, 2011 8:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to retrieve or insert data into DB2
Replies: 13
Views: 4420

There's no reason you would need to do this in two halves, but you certainly can do it that way if you like. If you are having some kind of a problem getting the data from the flat file into the database, tell us why, what errors or issues you are facing. Simply saying you "can't insert data&qu...
by chulett
Sat Oct 15, 2011 8:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with RT job loading SQL 2008 tables
Replies: 1
Views: 917

Googling for "SQLSTATE=S1010" makes it seem like a coding error since this is basically a sequencing issue, as in functions are being called out of sequence. No clue if that's a driver issue or an ODBC stage issue but in your shoes I would take this to my official support provider and see ...