Search found 6797 matches

by DSguru2B
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 ...
by DSguru2B
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

Code: Select all

COUNT hashedfilename

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.
by DSguru2B
Thu Apr 26, 2007 7:12 am
Forum: General
Topic: dsjob -jobstatus does not wait on restart
Replies: 15
Views: 13128

Stick in a -wait along with -jobstatus to observe the behaviour. As noted, it very well may be a bug.
by DSguru2B
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

Use CONVERT() function to convert every character thats not numeric to an empty space. Something like CONVERT("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz~!@#$%^&*()_+=-,./;[]\|}{:?><","",in.COL) You can add any character that i left out in ...
by DSguru2B
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...
by DSguru2B
Thu Apr 26, 2007 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Aggretaor
Replies: 10
Views: 2188

Specify an order by in your sql or use an explicit sort stage to sort the data. Let the aggregator know how the data is sorted.
by DSguru2B
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

Good idea Vincent. That springs another idea in my mind. Change each letter in the type column to its ascii equivalent. Use that as a surrogate key. That will be always the same. This way you dont even have to maintain a key lookup dataset. I posted C code a while back to do that. Check it out.
by DSguru2B
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

No, it wont. It will only add an extra step of generating keys for the new items everytime and appending it to your dataset/file/table that contains the item and key.
by DSguru2B
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

It might be. Check the length and precision and specify that manually for the key field within datastage. See if the behaviour of your job changes.
by DSguru2B
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

For now it maybe. As for the future, no one knows. The best design would be to handle that with minimal to no change to the present design. Thats why I advised a multi-instance job. Your method will work too.
by DSguru2B
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.
by DSguru2B
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

Read is fine, very fast too. A multiple instance job can keep it scalable. Tomorrow if a fourth or even fifth table comes in, no job design needs to be changed. The same can work for x number of tables.
by DSguru2B
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...