Search found 42189 matches

by chulett
Wed Sep 22, 2010 7:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fault type is 11 - Aggregator Stage Issue
Replies: 6
Views: 5056

sohasaid wrote:@chulett, I just want to make use of the whole memory (16 GB) instead of changing the job design.
I honestly don't believe you will have any other choice. We shall see, I suppose.
by chulett
Tue Sep 21, 2010 9:19 pm
Forum: General
Topic: Problem with logging into Director - Project locked
Replies: 17
Views: 7305

Ark ark. Why, yes it is.
by chulett
Tue Sep 21, 2010 7:04 pm
Forum: General
Topic: Regarding "DSJOB" Commands
Replies: 5
Views: 1911

You would use a UV stage, not ODBC. Or just run the query from the command line via dssh, let me see if I can find an example for you.

Here is one, searching for "dssh" will turn up others.
by chulett
Tue Sep 21, 2010 2:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage delete issue
Replies: 12
Views: 6472

Same as you would do it for any other dynamic parameter - do something to determine the value and then pass it to the job that needs it. That would typically involve a job (or script) to get the max value and a Sequence to run the two jobs one after the other and pass the value between them. Simples...
by chulett
Tue Sep 21, 2010 2:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file lookup problem
Replies: 17
Views: 5765

Check closer. Lookup failures simply mean you did not get an equality match on the values. Period. So, for whatever reason, your values are not matching. Do a View Data on both the source and lookup source, and click inside the Key fields on both sides. Move your cursor around inside each field. Tha...
by chulett
Tue Sep 21, 2010 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change xpath expressions of xml Dymanically
Replies: 7
Views: 3572

Not that I am aware of, there's nothing "dynamic" about those values as far as I know.
by chulett
Tue Sep 21, 2010 1:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file making problem
Replies: 11
Views: 2754

I'm going to repeat one last time that, IMHO, concentrating on the transformer and/or hashed file lookup is a mistake. Those kind of errors come from the target, typically Oracle client / driver generated errors and they can be very odd and very subtle, working for 99.9% of what you do in your jobs ...
by chulett
Tue Sep 21, 2010 1:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage delete issue
Replies: 12
Views: 6472

You reverse the roles, exchange source for target in a job design, that's all I meant.
by chulett
Tue Sep 21, 2010 1:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file lookup problem
Replies: 17
Views: 5765

As noted, the Director shows the number of successful lookups to the hashed file of which you had zero. As also already noted, this is typically a trimming issue, something like "ABC" will not match with "ABC ", for example.
by chulett
Tue Sep 21, 2010 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue regarding the insert
Replies: 10
Views: 3084

For that, you need to "land" or "stage" your source data, meaning a flat file or staging table, then load from there. That way it becomes static and you can take as long as you like to check whatever needs checking without worrying about what may (or may not) be going on in the t...
by chulett
Tue Sep 21, 2010 9:18 am
Forum: General
Topic: Before Job SubRoutine to set Job Parameter Values
Replies: 7
Views: 6462

Arnd simply corrected your use of a routine attaching to the calling object. That doesn't change the fact that you cannot do what you are attempting to do... which it seems you are still attempting. Or are we just off in testing land? :?
by chulett
Tue Sep 21, 2010 9:13 am
Forum: General
Topic: Regarding "DSJOB" Commands
Replies: 5
Views: 1911

There's no direct mechanism to do that. Some people use a Universe query to pull out a list of object names for a category and then loop thru them with dsjob but there's no way to do that directly.
by chulett
Tue Sep 21, 2010 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning in main program
Replies: 1
Views: 961

Do an explicit conversion of that field using the StringToDecimal() function as one example of a way to do that.
by chulett
Tue Sep 21, 2010 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capture Reject Rows
Replies: 8
Views: 2356

arunkumarmm wrote:Any thoughts on using a ODBC stage to write the target file?
Using the text drivers? No clue how well that would work but might be worth experimenting with. If you give that a try, let us know. :wink:
by chulett
Tue Sep 21, 2010 9:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capture Reject Rows
Replies: 8
Views: 2356

Sorry but my second suggestion isn't valid for your target type. There's nothing in the nature of a sequential file that would cause rejects, I lost track of that and thought we were talking about a database table. Now, you could use a database table as an intermediate staging point, a work table in...