Search found 42189 matches

by chulett
Mon Sep 20, 2010 5:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Field Function
Replies: 6
Views: 2097

Not just "should be" but can only be a single character. :wink:
by chulett
Mon Sep 20, 2010 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fault type is 11 - Aggregator Stage Issue
Replies: 6
Views: 5056

Not only do you have to sort your incoming data to relieve the memory pressure on the Aggregator stage, you need to assert that sorted order in the stage itself. And lastly you have to sort in an order that supports the grouping you are doing. Only if all three steps are done properly can the Aggreg...
by chulett
Mon Sep 20, 2010 12:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: comparing 2 dates
Replies: 6
Views: 2342

They have to be in the right format, not just the same to do a string compare. YYYY-MM-DD would work, yours would not. You could also use IConv() and then compare the internal dates.
by chulett
Mon Sep 20, 2010 9:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Vertical Pivot
Replies: 1
Views: 1088

You need to do an exact search, otherwise your queries seem to be date limited and don't return much of anything. But then you're right in that many of the 215 posts on the subject suggest searching, so you need to poke around in the older posts to find the wheat amongst the chaff. Here's one: http:...
by chulett
Mon Sep 20, 2010 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Implementing stored procudure
Replies: 4
Views: 1835

I don't have any docs in front of me, so this is off the top of my head... From what I recall, the Stored Procedure stage has a property to set it to function as a Source, Target or... Transformer? Basically meant to be in the job flow and get called for every record through the job. I would try set...
by chulett
Mon Sep 20, 2010 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file making problem
Replies: 11
Views: 2754

Never seen hashed files cause an issue like that. As I said, in your shoes I'd concentrate on your target, the stage and Oracle client version. That and involve your official support provider for any low level fault like that.
by chulett
Mon Sep 20, 2010 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file making problem
Replies: 11
Views: 2754

Errors in Server jobs always come from 'active' stages, typically Transformers but that doesn't always mean they are at fault. Me, I would concentrate on the target. Did you search for your error here? You are not the first person to see that particular issue, hence the suggestion.
by chulett
Mon Sep 20, 2010 6:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Vertical Pivot
Replies: 5
Views: 5748

Ah, yes... remove duplicates. No need for a silly trailer record. And here I'd just done something similar in that other tool using a Aggregator to capture the last() record from each group. :wink:
by chulett
Mon Sep 20, 2010 6:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job hanging on oracle SQLloader ?
Replies: 23
Views: 7246

Have you involved your official support provider yet?
by chulett
Mon Sep 20, 2010 6:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: remove leading zeros in decimal field in sequential file
Replies: 26
Views: 67194

No, you have to dig them up on the internet... I think Ray/Arnd may have posted a link to them but not sure it would still be valid.
by chulett
Mon Sep 20, 2010 6:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Tuncation Error
Replies: 4
Views: 1898

I would think more messages than that would be involved here. The table could be "busy", in use by another process and thus not truncatable.
by chulett
Mon Sep 20, 2010 5:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file making problem
Replies: 11
Views: 2754

What is your actual target? Did you search the forums for that "Fault Type is 11" error message?
by chulett
Mon Sep 20, 2010 5:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Records not loading to hash file.
Replies: 2
Views: 932

Any warnings in the job's log? I'm guessing you have a constraint issue, something is no longer allowing rows to leave the transformer after your change.
by chulett
Mon Sep 20, 2010 5:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage delete issue
Replies: 12
Views: 6472

Well... please explain exactly what this means: "when I remove a record from the input source file" DataStage deletes are target based, not source. How are you doing this? Manually? If so, then it sounds like you are damaging the file when you do so. Lastly, I don't see how deleting a reco...
by chulett
Sun Sep 19, 2010 9:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best approach to design?
Replies: 6
Views: 2219

Well... let's start by having you explain what "the output table columns are dynamic" means. There's no fixed number of columns? There's no fixed column names? Not sure how that's possible unless you are creating the "output table" each time the job runs. Can you shed some light ...