Search found 42189 matches

by chulett
Tue Aug 29, 2006 2:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 NEXTVAL
Replies: 3
Views: 2264

You could if you used a Reference Lookup to retrieve it first. Not saying that's a good way, but it is a way. :wink:
by chulett
Tue Aug 29, 2006 2:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replacing multiple strings with others
Replies: 7
Views: 1386

Based on what you posted - three EReplace functions, one after the other. Simple as that.
by chulett
Tue Aug 29, 2006 1:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multi Instance job
Replies: 5
Views: 1138

Should be simple enough to double-check, but I'm not sure if you can have a 'dot' in the Invocation ID. :?
by chulett
Tue Aug 29, 2006 1:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP stage unable to read Packed data
Replies: 6
Views: 1756

Ok... give an example of a packed field on the mainframe - something like S9(9)V99 COMP-3 let's say - and your corresponding column definition in the FTP stage.
by chulett
Tue Aug 29, 2006 1:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replacing multiple strings with others
Replies: 7
Views: 1386

You can do it either way. I'd probably go the routine route so that the rules are documented in one place and it can be leveraged in many. It will also makes changes easier as the jobs that reference it wouldn't (necessarily) need to change when the rules changed.
by chulett
Tue Aug 29, 2006 10:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rare Error Messsage
Replies: 20
Views: 9221

You know what is not recommended and you are working to get rid of? And hashed files over 2GB are perfectly fine as long as they are 64BIT hashed files. 2000 or 2050 sounds a bit high to me... not sure if that would also cause an issue. We are supporting something like 15 projects with our T30FILE p...
by chulett
Tue Aug 29, 2006 10:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP stage unable to read Packed data
Replies: 6
Views: 1756

More wondering how are you defining the metadata for the packed fields?
by chulett
Tue Aug 29, 2006 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rare Error Messsage
Replies: 20
Views: 9221

Hmmm... I can't think of anything off the top of my head that I've had to 'work around'. And I believe that 'too many subdirectories' issue is specific to the AIX operating system. Not much you can do there other than live with that limitation. The OP may be running into resource issues. I'm curiou...
by chulett
Tue Aug 29, 2006 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP stage unable to read Packed data
Replies: 6
Views: 1756

What is the nature of the strange problem? How are you defining this packed data and what issues are you having with it?
by chulett
Tue Aug 29, 2006 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: @INROWNUM ?
Replies: 23
Views: 14823

I don't think it's possible to answer your question without seeing the actual job and what you are doing in it. As in posting a dsx export of it somewhere.
by chulett
Tue Aug 29, 2006 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rare Error Messsage
Replies: 20
Views: 9221

BTW, you hit the nail on the head, we are always creating almost each hash file again and again every day. Stop. While the norm is to rebuild the contents of hashed files run to run, there usually isn't an overwhelming need to delete and recreate them each run as well. Why not switch to simply clea...
by chulett
Tue Aug 29, 2006 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML input problem
Replies: 5
Views: 1585

The error is on the output file.
by chulett
Tue Aug 29, 2006 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML input problem
Replies: 5
Views: 1585

Otherwise, check that it is a valid path and you have permissions to write to it. Or if the file already exists, that you have permission to overwrite it.
by chulett
Tue Aug 29, 2006 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rare Error Messsage
Replies: 20
Views: 9221

Unfortunately the affected hash file in the unix directory does not look like a normal one. There separate files per each record, where the name is the key of the hash file. I forget what silly type this is but it is one of the ways that a dynamic hashed file can 'corrupt' itself, especially if you...
by chulett
Tue Aug 29, 2006 7:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help with date comparison between rows of data
Replies: 3
Views: 1299

Have you done much with stage variables? That would be the typical way to compare anything across adjacent rows - assuming the incoming data in sorted correctly. You would setup two, one to compare the current value with the previous value and a second to reset the current value. This leverages the ...