Search found 6797 matches
- Thu Aug 17, 2006 11:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Handling Null values in Routines
- Replies: 4
- Views: 969
- Thu Aug 17, 2006 9:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Strange transformer compilation error
- Replies: 6
- Views: 1197
- Thu Aug 17, 2006 9:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data Stage function extracting only numbers
- Replies: 6
- Views: 5333
- Thu Aug 17, 2006 9:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Strange transformer compilation error
- Replies: 6
- Views: 1197
- Thu Aug 17, 2006 9:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: look up issue
- Replies: 5
- Views: 745
- Thu Aug 17, 2006 9:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data Stage function extracting only numbers
- Replies: 6
- Views: 5333
- Thu Aug 17, 2006 9:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: data load problem
- Replies: 9
- Views: 2424
- Thu Aug 17, 2006 9:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting a Part from the given String
- Replies: 24
- Views: 18294
Well, a few suggestions in writing the routine. Read in the entire description and take four positions at a time and check for "P/N ". If it doesnt match, store it in one variable which will be called your 'Restofdata' and if it matches, store it another variable untill you hit , Something like Desc...
- Wed Aug 16, 2006 10:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem with ExecCommand activity in Sequencer
- Replies: 9
- Views: 2137
- Wed Aug 16, 2006 10:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Tab Delimiter
- Replies: 3
- Views: 1114
- Wed Aug 16, 2006 10:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: delta processing
- Replies: 11
- Views: 3174
- Wed Aug 16, 2006 10:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: condition in a transformer
- Replies: 19
- Views: 4275
Ok, this is a little bit tricky. Before building the hashed file, add another column which is a surrogate key, a running number, i.e, 1,2,3..... and so on. Specify that as key and in the derivation of the lookup specify @INROWNUM so that each and every row has a hit. Define a stage variable to check...
- Wed Aug 16, 2006 9:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: create an extract
- Replies: 10
- Views: 3836
You can also stick an IPC stage in between the transformer and the link collector stage to get rid of that error. This error occurs because both transformer and link collector are active stages and DataStage will not allow a direct link between them unless you have an IPC stage in between or have In...
- Wed Aug 16, 2006 9:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Doubt with ExecCommand Activity in sequence
- Replies: 9
- Views: 2568
use && in place of ; in Craig's code. This way the second command will only be executed if the first one is successful
Code: Select all
cd /DataStage/751A/Ascential && rm *.blp
- Wed Aug 16, 2006 1:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: condition in a transformer
- Replies: 19
- Views: 4275
Re: condition in a transformer
rule: Only load the records where main_id = lookup_id and dt_record between dt_start and dt_end. But i thought it was just a single key as per your rule above. Well it doesnt matter how many keys you have. Just link the keys properly to the hashedfile in the transformer. Not(RefLink.NOTFOUND) will ...