Search found 53125 matches
- Tue Jun 07, 2005 2:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Steps to upload DataStage client on WProf
- Replies: 2
- Views: 847
If you're looking for a website from which you can obtain the client software you're out of luck. There isn't one. You must buy the software. With it you get full and complete installation instructions. Whether or not "they" will sell just the client is problematic; the client alone is totally usele...
- Tue Jun 07, 2005 2:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Test for empty hashed file
- Replies: 5
- Views: 1885
- Mon Jun 06, 2005 3:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Trigger Expression
- Replies: 4
- Views: 1061
- Mon Jun 06, 2005 3:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to identify an End Of File (or end of data) status
- Replies: 3
- Views: 945
You can inspect the code produced by compiling the Transformer stage to see how it's done there. However you don't have access to the result of the "Get" function, so there's no convenient way for you to do it within the Transformer stage. Ken's suggestion is a good one; after all that's what the Ag...
- Mon Jun 06, 2005 3:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Compiler or Interpreter?
- Replies: 10
- Views: 3184
The compiled code from a server job is not executable by the native machine; rather it is executed in a 'virtual machine' called the DataStage Run Machine. This assists in platform portability, and explains why you can't install an AIX DataStage on an HP-UX machine; the Run Machine is different. It'...
- Mon Jun 06, 2005 3:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Basic Statement - CREATE
- Replies: 11
- Views: 1940
What value is returned by STATUS() when OPENSEQ is executed? The ELSE clause can be taken for a number of reasons - read the manual on OPENSEQ. For example, of C:\DS305Files does not exist, OPENSEQ will fail, you will not have a valid file variable, and CREATE is therefore doomed. I don't use CREATE...
- Mon Jun 06, 2005 3:07 pm
- Forum: General
- Topic: Exception Handler Issue
- Replies: 7
- Views: 3279
- Mon Jun 06, 2005 3:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to declare & use parameter in Routines
- Replies: 14
- Views: 11356
- Mon Jun 06, 2005 2:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job completion status
- Replies: 5
- Views: 1454
- Mon Jun 06, 2005 2:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: installing Datastage on windows XP home edition
- Replies: 3
- Views: 1042
- Mon Jun 06, 2005 2:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Relationship between Nodes and Partitions
- Replies: 3
- Views: 1296
A Data Set is partitioned so that there is exactly one partition on each of the processing nodes defined for the stage whose input link specifies the partitioning algorithm. By default this is the same as the number of processing nodes in the configuration file associated with the job for its curren...
- Mon Jun 06, 2005 2:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Boosting the Performance of the job
- Replies: 8
- Views: 2181
When you select, ORDER BY the pivot keys. This will help a little. The only other suggestion I can make is to capture performance statistics for the Pivot and Transformer stages; this will highlight any "hot spots". For example, how complex are your Transformations? Statistics gathering is enabled o...
- Mon Jun 06, 2005 2:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Strange hash file behaviour
- Replies: 6
- Views: 1137
- Mon Jun 06, 2005 2:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Redbrick Bulk load problem
- Replies: 3
- Views: 918
The message "rb_tmu not found" indicates that what I suggested earlier (that the parent directory $RB_CONFIG/bin is not in your PATH). Modify the dsenv file so that all required Red Brick environment variables are set for DataStage processes. There is no such thing as rb_ctmu. Red Brick has: rb_tmu ...
- Mon Jun 06, 2005 2:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Job 222 Phantom 26691 (Characters not in NLS map)
- Replies: 7
- Views: 5500
The correct NLS map for hashed files is always NONE. This is because hashed files are internal to DataStage; the data have already been mapped from the external representation by the time they get into a hashed file. Had you mentioned in your original post that a hashed file was involved we probably...