Don't think so. This one looks like a C++ compiler issue.
Did you install the C++ compiler (from Visual Studio .NET) before installing DataStage?
Search found 53125 matches
- Thu Mar 08, 2007 8:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Promblem compiling parallel transformer
- Replies: 3
- Views: 1105
- Thu Mar 08, 2007 8:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Abort After 50 warnings
- Replies: 13
- Views: 5230
- Thu Mar 08, 2007 8:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Checking Inserts/Updates on large tables
- Replies: 18
- Views: 4700
20 million is not too bad. All you need in the hashed file to test for existence is the business key values (and maybe the surrogate key values as a non-key column) from the current rows of the dimension table. Two integers is not such a big row; storing 20 million of these in a hashed file won't ev...
- Thu Mar 08, 2007 8:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stage variable on duplicates..
- Replies: 4
- Views: 995
To remember the previous row you need to record the value AFTER performing the comparison.
Code: Select all
svIsChanged <== (InLink.TheColumn <> svPrevValue) And (@INROWNUM > 1)
svPrevValue <== InLink.TheColumn- Thu Mar 08, 2007 8:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Row count of a link
- Replies: 24
- Views: 19340
The row count for a link is given by @OUTROWNUM (for output links from a Transformer). You don't need to calculate anything while the job is running. As noted, you can interrogate the job subsequently. You could also generate 1 as a single column on an output link and pass this through an Aggregator...
- Thu Mar 08, 2007 7:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: splitting a string into three fields
- Replies: 33
- Views: 5453
- Thu Mar 08, 2007 7:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error in the routine
- Replies: 3
- Views: 1499
- Thu Mar 08, 2007 7:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA OCI stage and Oracle sequence
- Replies: 10
- Views: 3860
- Thu Mar 08, 2007 7:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Jobs keeps running even though the Mload has failed
- Replies: 8
- Views: 2611
- Thu Mar 08, 2007 7:40 am
- Forum: General
- Topic: Can we wrap the Java code in Oracle Stored Procedure and the
- Replies: 2
- Views: 1403
- Thu Mar 08, 2007 7:39 am
- Forum: General
- Topic: Call java code
- Replies: 4
- Views: 2343
- Thu Mar 08, 2007 7:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can you call Java Code from DataStage?
- Replies: 3
- Views: 2082
- Wed Mar 07, 2007 6:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: add_to_heap() - Unable to allocate memory
- Replies: 6
- Views: 1694
- Wed Mar 07, 2007 6:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: add_to_heap() - Unable to allocate memory
- Replies: 6
- Views: 1694
- Wed Mar 07, 2007 6:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: splitting a string into three fields
- Replies: 33
- Views: 5453
Apply a TRIMB() before anything else. Stick the result in a stage variable. Use the Field() function to get the state and zip. For example zip might contain five or nine characters. Beware that the city name may have spaces in it, so you need to know how many fields there are in the string, and extr...