Search found 53125 matches

by ray.wurlod
Wed Jun 06, 2007 12:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Additional text in the output of Execute Commant Stage
Replies: 11
Views: 2549

I have seen something similar to this in the past, where DataStage (UniVerse) was running out of file units in the rotating file pool, and data destined for one file unit was misdirected to another. Were there very many files open at the time? Does the problem occur reliably? If not, is it only at b...
by ray.wurlod
Wed Jun 06, 2007 12:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing Column Name from Routine and get its value
Replies: 3
Views: 896

Probably, but nothing is guaranteed.
by ray.wurlod
Wed Jun 06, 2007 12:30 am
Forum: General
Topic: How to Remove Duplicates?
Replies: 14
Views: 5319

This might seem a bleedingly obvious question at this point, but why can't you use the Remove Duplicates stage?
by ray.wurlod
Wed Jun 06, 2007 12:29 am
Forum: General
Topic: DataStage software
Replies: 3
Views: 1275

None exists.
by ray.wurlod
Wed Jun 06, 2007 12:27 am
Forum: General
Topic: Error in Connector Import wizard: "missing a handler po
Replies: 1
Views: 2500

Welcome aboard. Unable to allocate... messages usually mean that some resource was not able to be obtained. In this case, for a handler pool, the resource is probably memory. Alternatively, there is a bug in the process for attaching your stage to a Connector - ask your support provider whether ther...
by ray.wurlod
Wed Jun 06, 2007 12:23 am
Forum: General
Topic: Wrong dates in Hash File
Replies: 9
Views: 4030

The only reason it could be taking the other field is because the developer told it to. Check the output column and/or stage variable derivations carefully.
by ray.wurlod
Wed Jun 06, 2007 12:18 am
Forum: General
Topic: Quality Stage V7.0 & 7.5 of XE vs EE
Replies: 1
Views: 1109

With admittedly very standard jobs (only Investigate, Select, Standardize, one-file Match and Survive stages) the migration was transparent.
by ray.wurlod
Tue Jun 05, 2007 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Stage
Replies: 5
Views: 1390

Your data are not partitioned on the join key. You must partition (using hash - or modulus for integer keys) so that the same value always appears in the same node.
by ray.wurlod
Tue Jun 05, 2007 2:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transform Functions
Replies: 4
Views: 1119

Ask for proof. In the meantime, open the stage properties of any of your Transformer stages. If there are tabs there called Trigger and Build, these are for C++, not for DataStage BASIC, so you have a parallel Transformer stage. Another thing you might try is finding the BASIC Transformer stage in t...
by ray.wurlod
Tue Jun 05, 2007 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running PX on separate CPU's.
Replies: 13
Views: 3408

Ask your UNIX administrator about partitions, particularly logical partitions (LPARs).
by ray.wurlod
Tue Jun 05, 2007 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter Sets - Recompile Question
Replies: 5
Views: 1332

Parameter sets , however, are stored in the common repository of IBM Information Server. To achieve what you want the easiest thing to do is to set up the parameters in the parameter set as environment variables with default value $PROJDEF. That way, the running job will pick up the value from whate...
by ray.wurlod
Tue Jun 05, 2007 2:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: implicit Vs explicit sort
Replies: 6
Views: 2387

The Sort stage is very useful for preventing unnecessary sorting, using Sort Mode "Don't Sort (Previously Sorted)".
by ray.wurlod
Tue Jun 05, 2007 1:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: julian to timestamp
Replies: 6
Views: 1656

Julian is an abused term roughly meaning "counted from a particular day zero".
by ray.wurlod
Tue Jun 05, 2007 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage memory usage
Replies: 9
Views: 3346

The Join stage uses hardly any memory at all. It takes in one row from its left input, and only those rows from the right input for which the join keys match. Your error actually came from an (inserted?) tsort operator that precedes the join operator. Dump the score to see how this is connected. So ...
by ray.wurlod
Tue Jun 05, 2007 1:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Counting records from a Lookup fileset
Replies: 1
Views: 864

It is not possible by any means. A Lookup File Set is architected purely to answer "Get By Key" functionality - that is, to feed a reference link to a Lookup stage. It does not support a "Get Next Row" function, and therefore can not deliver a row count. You have to rely on the row count when popula...