Search found 6797 matches
- Thu Apr 26, 2007 8:12 am
- Forum: General
- Topic: DS General question(UV,VOC,Hash)
- Replies: 3
- Views: 1515
Re: DS General question(UV,VOC,Hash)
1) what is the use UV(Universe) in DataStage The underlaying database of DataStage used to Universe. Its not Universe anymore (Since 5.1 I believe). Its called DataStage Engine. I think its safe to say that due to the similarities in the architecture, uv commands can be run on DSEngine. I might be ...
- Thu Apr 26, 2007 7:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get Hashed File row count?
- Replies: 6
- Views: 2891
Or go inside your Administrator and simply type the command
If the hashed file is a pathed hashed file, then create a VOC entry using SETFILE command and use that VOC name as the hashed file name.
Code: Select all
COUNT hashedfilenameIf the hashed file is a pathed hashed file, then create a VOC entry using SETFILE command and use that VOC name as the hashed file name.
- Thu Apr 26, 2007 7:12 am
- Forum: General
- Topic: dsjob -jobstatus does not wait on restart
- Replies: 15
- Views: 13128
- Thu Apr 26, 2007 7:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Filtering character values in transformer
- Replies: 4
- Views: 1000
- Thu Apr 26, 2007 6:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Not able to generate a 4 digit surrogate Key
- Replies: 3
- Views: 1416
Refer here.
- Thu Apr 26, 2007 6:57 am
- Forum: General
- Topic: How to call a sdk category routine in the transformer stage
- Replies: 6
- Views: 1620
Is'nt that a server routine? If your looking forward to using it in a px transformer, then dont. Its not available for px transformer. You will have to either use a server job or a basic transformer in a px job if you want to use that routine. But there are px transform functions that can do the sam...
- Thu Apr 26, 2007 6:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with Aggretaor
- Replies: 10
- Views: 2188
- Thu Apr 26, 2007 6:44 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Repeatable Key Generation
- Replies: 7
- Views: 2179
- Wed Apr 25, 2007 5:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Repeatable Key Generation
- Replies: 7
- Views: 2179
- Wed Apr 25, 2007 4:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: source and target as the same table (using oracle stage)
- Replies: 22
- Views: 6403
- Wed Apr 25, 2007 4:54 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Load multiple tables
- Replies: 11
- Views: 2958
- Wed Apr 25, 2007 4:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Repeatable Key Generation
- Replies: 7
- Views: 2179
So everytime there will be the same set of records right? Then its even easier. As for how to, no function out of the box, basically you will have to generate it. vmcburney has an FAQ entry on it. Click here.
- Wed Apr 25, 2007 4:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: source and target as the same table (using oracle stage)
- Replies: 22
- Views: 6403
- Wed Apr 25, 2007 4:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Load multiple tables
- Replies: 11
- Views: 2958
- Wed Apr 25, 2007 4:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Repeatable Key Generation
- Replies: 7
- Views: 2179
Get the item and generate keys using the transformer. Load it into a dataset. Each time you load your data, do a lookup on this dataset to get the exact key everytime. If there are new ones, send it down a second link and generate the next key. You can certainly design it along these lines to do wha...