Search found 53125 matches
- 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...
- 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
- Wed Jun 06, 2007 12:30 am
- Forum: General
- Topic: How to Remove Duplicates?
- Replies: 14
- Views: 5319
- Wed Jun 06, 2007 12:29 am
- Forum: General
- Topic: DataStage software
- Replies: 3
- Views: 1275
- 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...
- Wed Jun 06, 2007 12:23 am
- Forum: General
- Topic: Wrong dates in Hash File
- Replies: 9
- Views: 4030
- Wed Jun 06, 2007 12:18 am
- Forum: General
- Topic: Quality Stage V7.0 & 7.5 of XE vs EE
- Replies: 1
- Views: 1109
- 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
- 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...
- 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
- 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...
- 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
- 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
- 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 ...
- 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...