Search found 42189 matches

by chulett
Fri Oct 21, 2005 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage scheduling issues
Replies: 6
Views: 1362

But if the scheduling user is not in the appropriate 'allow' file then the scheduling attempt will fail, not the running of same. Need a better explanation of what 'hang' means.
by chulett
Fri Oct 21, 2005 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding the CLOB datatype of Oracle
Replies: 5
Views: 1224

But I am facing this problem only when I use Varchar(2000), this problem disappears when I use Longvarchar(2000). Why? Because Longvarchar is the proper datatype to use with a CLOB. Use it and stop worrying about it. If you really want to use a Varchar then you'll need to CAST the CLOB to a VARCHAR...
by chulett
Fri Oct 21, 2005 7:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle 9i Stage issues
Replies: 6
Views: 1518

No, dual is a perfectly valid 'pseudo' table and can be used in the manner that the OP showed. However... I don't understand what 'at the end of each step' means and where exactly this SQL is being executed. And as Ray notes, by itself this SQL doesn't update anything. This seems like an awfully clu...
by chulett
Fri Oct 21, 2005 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UtilityHashLookup calling
Replies: 10
Views: 2433

Is your hashed file in an 'account' or is it a 'pathed' hashed file? This utility will only work with account based hashed files, hence the question.
by chulett
Fri Oct 21, 2005 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: improve performance in Transaction Handling tab
Replies: 6
Views: 1673

This is a two year old topic. Sheesh... I would think they've solved their problem by now.
by chulett
Fri Oct 21, 2005 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 10 pounds in a 5 pound bag
Replies: 28
Views: 5576

They take them beyond the realm where I am going to worry about it... too many other fires burning. Just grateful one was put out. :wink:
by chulett
Fri Oct 21, 2005 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to skip the trailer record
Replies: 25
Views: 9790

No, that's fine. If you have no record terminators then you won't be able to use things like 'head' or 'tail' to trim out headers or trailers and will need to let the CFF stage do it for you. Carter has been trying to drive that point home. All I was trying to point out is that EBCDIC and record/lin...
by chulett
Thu Oct 20, 2005 2:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 10 pounds in a 5 pound bag
Replies: 28
Views: 5576

Thanks for your help with all this, Arnd. I've got something that seems to be working fine and giving them what they want - inspired by your code and guidance. I've stashed yours away for a rainy day, copyright and all, in case I find a need for it. They ended up wanting something more displayable (...
by chulett
Thu Oct 20, 2005 2:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequencer Problem
Replies: 11
Views: 5798

Problem is, not all Aborts are created equal. Jobs can crash or suffer timeouts and other problems that are not considered as 'Aborted'. That's why I prefer to specify the good stuffs and then let all the bad stuffs get caught by the Otherwise trigger. :wink:
by chulett
Thu Oct 20, 2005 1:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequencer Problem
Replies: 11
Views: 5798

Now when I put "Otherwise" in the second link and 'Finished Ok' in the first link, when warning occurs the "Otherwise trigger gets kicked off and the next sequence dies not run. Of course... think about your trigger values. There are three basic status codes a job could finish with: 'Ok', 'With War...
by chulett
Thu Oct 20, 2005 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 10 pounds in a 5 pound bag
Replies: 28
Views: 5576

I'd be curious to see your routine as I'm not having alot of luck duplicating what you are saying here. Sorry.

I can find an 'MB0C' conversion code (zero not oh) but that seems to output a giant binary number. Did you perhaps mean "MO0C" to get Octal? :?
by chulett
Thu Oct 20, 2005 7:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to skip the trailer record
Replies: 25
Views: 9790

My point in ebcidic format is - if its in ascii i can manage to read the header and use head command till n-1. But iam not sure wheater i can use 'wc' for this purpose and will it procduce same output for ascii and ebcidic Yes, you can use 'wc'. EBCDIC (only one 'eye') isn't magic or something that...
by chulett
Thu Oct 20, 2005 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 10 pounds in a 5 pound bag
Replies: 28
Views: 5576

It is an interesting solution, unfortunately I don't believe it will work for us. I've made the classic newbie mistake of not giving you 100 percent of the information needed to solve my problem. I was looking for an function because it needs to be repeatable by the business partner we are creating ...
by chulett
Wed Oct 19, 2005 9:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling ^M
Replies: 17
Views: 3774

Really - why go through all of these shenanigans to remove something that a simple change of record terminator in the sequential file stage will automatically handle for you? :?
by chulett
Wed Oct 19, 2005 9:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle stage - can we treat one specific error as fatal
Replies: 5
Views: 1174

Ken's suggestion is the way to go - specific reject links for specific errors or groups of errors. That way you can control how many it takes per link before it aborts the job.