Put a call DSLogWarn({data},'') into your routine to make sure that the 3 values are being passed as expected and that it is being called when you expect it to be.
An alternative would be to use the debugger.
Search found 15603 matches
- Mon Jul 25, 2005 7:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine works in designer, not when run
- Replies: 3
- Views: 875
- Mon Jul 25, 2005 1:58 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Null record getting rejected
- Replies: 8
- Views: 1825
Kirtikumar, I just looked and stand corrected ! In our Oracle we can insert a null into an integer field and subsequently SELECT it. Since a binary representation of NULL in a normal integer field isn't possible Oracle must use a flag outside of the field's value to mark it as NULL. If a field is a ...
- Mon Jul 25, 2005 1:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Null record getting rejected
- Replies: 8
- Views: 1825
Kumar, integer fields cannot contain null values. Think about it for a minute, integers are represented in a binary form (often excess-128) and use every single possible combination of bits to represent positive and negative numbers. How would an SQL NULL fit in? There is no way to distinguish betwe...
- Mon Jul 25, 2005 1:13 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: date conversion
- Replies: 27
- Views: 8143
- Sun Jul 24, 2005 4:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Is there any max restriction for file size?
- Replies: 9
- Views: 4844
- Sat Jul 23, 2005 6:02 am
- Forum: Data Integration
- Topic: DataStage job listings at an all time high
- Replies: 7
- Views: 8926
Ray, the usual listings specify attributes such as: (1) trained Superman (2) walks on printouts without leaving wrinkles (3) 10 years Px Experience (4) 2 advanced Computer Degrees (5) 10 years specific industry experience (6) no older than 25 (7) willing to pay customer for the honour of working But...
- Fri Jul 22, 2005 11:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: combining files into one
- Replies: 8
- Views: 1990
- Fri Jul 22, 2005 11:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Implementing a counter based on a maximun value and inclemen
- Replies: 10
- Views: 1908
- Fri Jul 22, 2005 11:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: combining files into one
- Replies: 8
- Views: 1990
- Fri Jul 22, 2005 10:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: combining files into one
- Replies: 8
- Views: 1990
- Fri Jul 22, 2005 10:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: combining files into one
- Replies: 8
- Views: 1990
- Fri Jul 22, 2005 10:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Querying hash file ???
- Replies: 9
- Views: 2571
- Fri Jul 22, 2005 9:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job naming - alphabetical?
- Replies: 5
- Views: 1002
The general naming conventions at this project run to 28 fascinating and thrilling pages, of which 3 cover job nomenclature. The name is in the general Format J{Sequencer/Px/Server}{Group}{Category}{Type}{Hungarian-notation-short-desc}{[Number}. Most developers on this project have gotten very, very...
- Fri Jul 22, 2005 9:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Write status in output file
- Replies: 4
- Views: 821
Titto, it was easier to tell you what you can't do than to figure out what you should do You could write to 3 separate sequential files and later on concatenate them. You could write to a hash file adding the transform name to the key to make sure that records aren't duplicated. You could write to O...
- Fri Jul 22, 2005 9:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Write status in output file
- Replies: 4
- Views: 821
Titto, you can use the same file in 3 stages as output if: (a) it is not a sequential file (b) if it is a hash file, the keys must be unique, meaning if one stage uses the same key as a previous one the value is overwritten (c) if it is a direct database or ODBC connection then you need to ensure th...