kduke wrote:He has no life like the rest of the top posters.
Search found 42189 matches
- Wed Jul 06, 2005 4:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ExecTCL
- Replies: 12
- Views: 4266
- Wed Jul 06, 2005 12:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ExecTCL
- Replies: 12
- Views: 4266
- Tue Jul 05, 2005 10:42 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: "TAB" Delimitter
- Replies: 2
- Views: 782
- Tue Jul 05, 2005 5:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: reading sequential file
- Replies: 8
- Views: 3024
Re: reading sequential file
My question is ,The output of the routine was in row by row format so can i use LF as new line character(as a delimiter). Nope. Your sequential file has that as a delimiter but an array doesn't. I'm not sure an array will work in this situation, with these 'Loop' stages. You could try setting it to...
- Tue Jul 05, 2005 6:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HOW TO GIVE NOT EQUAL CONDITION IN LOOKUP
- Replies: 5
- Views: 3277
- Tue Jul 05, 2005 6:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HOW TO GIVE NOT EQUAL CONDITION IN LOOKUP
- Replies: 5
- Views: 3277
As noted, only equal comparisons work in a Hash lookup. You check for 'not equal' by looking for the failure of your equal check. Typically. There will be an Output Link boolean variable called NOTFOUND that will be TRUE or you can check to see if your key value is null after the lookup - hash misse...
- Mon Jul 04, 2005 9:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FTP plugin Stage and log information on 7.5
- Replies: 1
- Views: 711
Yes, it can be as simple as using the two stages you mention. You might want to let us know what exactly you've tried, what doesn't seem to be working and whatever error messages you've gotten so far. As to the log, there's nothing special created elsewhere by the stage - just the normal job run inf...
- Mon Jul 04, 2005 8:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: help needed with hash file with key combinations
- Replies: 7
- Views: 1742
You need to understand that hash files do not support duplicate key combinations and resolve all differences via Destructive Overwrite. This means that the last version of the key written to the hash is the winner and the one that you'll pull out later. Resort your data such that the desired 'first'...
- Mon Jul 04, 2005 4:31 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: internal limit restriction exceeded
- Replies: 6
- Views: 2256
- Mon Jul 04, 2005 11:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Export Jobs and Routines from DS 7.5 to DS 7.1
- Replies: 5
- Views: 1044
- Mon Jul 04, 2005 10:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Export Jobs and Routines from DS 7.5 to DS 7.1
- Replies: 5
- Views: 1044
Welcome aboard Adriano. Probably the simplest answer is 'no'. You may be able to get away with it on simple jobs or routines, ones that you know don't use any functionality specific to 7.5, but... components are automatically upgraded during import, not sure what would happen if it thought they need...
- Mon Jul 04, 2005 10:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Category Information
- Replies: 6
- Views: 1139
- Mon Jul 04, 2005 7:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Find Last Record in File
- Replies: 13
- Views: 3366
- Mon Jul 04, 2005 7:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Export from Version Control
- Replies: 1
- Views: 631
Rather than Export (which is a function of the Manager) do you really mean Promote from Version Control? So, you are trying to promote a version of a job back into development? Shouldn't normally be a problem. Usually the only thing people forget is to uncheck the 'Read Only' option. Biggest questio...
- Mon Jul 04, 2005 6:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Logging warnings in seq file
- Replies: 7
- Views: 2341
True - for the kind of messages that escape your checks and actually get logged. The primary focus of the question, however, was logical rejects under the control of the job... the kind of stuff that (typically) never makes it into a log. A combination of techniques could be used to cover all the ba...