Search found 15603 matches
- Fri Oct 28, 2005 2:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: NLS export existing map for edit
- Replies: 14
- Views: 2654
...We release the DS Job which embeds the code in the routines used within the job... Routine object code is not embedded within the job, it is stored in a different location (DS_ROUTINES and a pointer in the VOC). If the routines are transported as part of a release they are put in this location. ...
- Fri Oct 28, 2005 1:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSN Names
- Replies: 19
- Views: 8830
- Fri Oct 28, 2005 1:38 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Null issues
- Replies: 10
- Views: 3189
Pilot, the designer of the PX null handing system (an illegitimate issue from Mary Shelley and Freddy Kruger) has come up with some really wonderful ideas for torture - and when combined with the PX Sequential file stage (coded by a temporary resident from the depths of the 7th level of hell who was...
- Fri Oct 28, 2005 1:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSN Names
- Replies: 19
- Views: 8830
- Fri Oct 28, 2005 1:17 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Max stages per jobs
- Replies: 2
- Views: 984
50 stages is a lot of steps. If you have an 8 node configuration then you are kicking off 400+ processes for this. Many PX sites might not have a single job with that many stages, but fire off several smaller jobs in parallel that start up thousands of pids. A lot of these PX processes will not do m...
- Fri Oct 28, 2005 1:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: NLS export existing map for edit
- Replies: 14
- Views: 2654
- Thu Oct 27, 2005 3:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Configure dsdlockd
- Replies: 1
- Views: 1649
- Thu Oct 27, 2005 11:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merge Stage - pure inner join speed
- Replies: 12
- Views: 3097
- Thu Oct 27, 2005 10:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merge Stage - pure inner join speed
- Replies: 12
- Views: 3097
Ken, I understand what you meant now - I orginaly assumed that it would do a complete data sort {just as that durn merge stage is obviously doing}. But do you think that the round-robin collector could ever get out of synch? I wrote small test job and started it 50 times (thank god for multi-instanc...
- Thu Oct 27, 2005 10:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: NLS export existing map for edit
- Replies: 14
- Views: 2654
Jinm, as Roy has pointed out, the jobs that call a routine use only a pointer to it that is resolved at runtime, so you only need to re-compile the routine and any jobs that use it will get the new version; any jobs that are actively running using this routine will continue to use the old copy until...
- Thu Oct 27, 2005 10:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merge Stage - pure inner join speed
- Replies: 12
- Views: 3097
Ken, since these data streams are going to contain hundreds of millions of records I really don't want to do any sorting at all. In reality I don't have two files, I actually have just one stream that has been split in a transform, with one stream going into a very complex shared container which ret...
- Thu Oct 27, 2005 9:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: NLS export existing map for edit
- Replies: 14
- Views: 2654
jinm, I've made my own Japanese maps and manually added all the gaiji characters before, and the effort was all manual within DataStage/Universe. The tools might be unwieldy and archaic but they do work quite well - but only once you've gone through the painful process of using them. I'm curious as ...
- Thu Oct 27, 2005 9:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Different versions of DataStage: Question about plugins
- Replies: 1
- Views: 819
Actually, you can have multiple instances running on the same machine at the same time. Plugins are not an issue with colocated versions 7.1 and 7.5; and I am fairly confient that it would work with 5.x and 7.5 - but not enough to recommend trying it on a production environment. I think you ought to...
- Thu Oct 27, 2005 9:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merge Stage - pure inner join speed
- Replies: 12
- Views: 3097
Ken, thanks! Right after I posted the query I thought about the link collector, and wrote a test job using that. Essentially the rows alternate between File A and File B so with a stage variable in a transform it works perfectly. The speed is about 125,000 rows per second on this box (I'm using name...
- Thu Oct 27, 2005 9:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merge Stage - pure inner join speed
- Replies: 12
- Views: 3097
Merge Stage - pure inner join speed
I have two sequential files, each with two columns - the first column is the 'key' and the other is data. The source files are in the same order and of the same length - meaning that the n-th row of file A will have the same 'key' as the n-th row of file B. I want to output three columns, the key, F...