Search found 15603 matches
- Thu Dec 08, 2005 11:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Min Data of Two Columns
- Replies: 7
- Views: 1206
Without knowing more I would suggest sticking with an aggregator to get the minimum of columns A and B, then going to a transform and output those two column plus the MIN of A and B minimums. The transform only gets executed one time, since there is only one row. This is better than your current sol...
- Thu Dec 08, 2005 11:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Min Data of Two Columns
- Replies: 7
- Views: 1206
If all you need is one MIN value across all value in ColA and ColB then all you need is one stage variable to hold that. You would only need to do one pass through the data; any sort or aggregation is going to have more processing to do than that. The question then is what you plan on doing with tha...
- Thu Dec 08, 2005 11:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: IsNull on stage varaible
- Replies: 7
- Views: 1578
- Thu Dec 08, 2005 10:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Min Data of Two Columns
- Replies: 7
- Views: 1206
- Thu Dec 08, 2005 10:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: IsNull on stage varaible
- Replies: 7
- Views: 1578
Change your job to write out the value to your output file and see what the value really is, this might help you more than knowing what it isn't. The value might be a non-displayable one, not a "" or a SQL.NULL or CHAR(000).
Code: Select all
SEQ(Field(link, "-", 3))- Thu Dec 08, 2005 10:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: IsNull on stage varaible
- Replies: 7
- Views: 1578
- Thu Dec 08, 2005 10:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Compiling Job Control Subroutine
- Replies: 6
- Views: 3225
- Thu Dec 08, 2005 9:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSJob functon
- Replies: 8
- Views: 2760
If you do not have active-to-active stage interprocess buffering enabled then all the transforms will be executed by one process, and row 2 won't be read until row 1 processed; so there is no need for passing global values between stages. I don't understand why you have this restriction in your job ...
- Thu Dec 08, 2005 9:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSJob functon
- Replies: 8
- Views: 2760
You can access a link's value using @INROWNUM in the same transform. If you wish to use that value in another transform downstream, then add this value to a new column in the output derivation. I'm not sure I understood your question or problem, but this might answer it. If not, perhaps you could ex...
- Thu Dec 08, 2005 9:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: IsNull on stage varaible
- Replies: 7
- Views: 1578
- Thu Dec 08, 2005 8:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error code 65280
- Replies: 7
- Views: 15548
- Thu Dec 08, 2005 8:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dsjob error in AIX 5.3
- Replies: 5
- Views: 2427
- Thu Dec 08, 2005 8:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSD.GetStatus - Improper data type
- Replies: 8
- Views: 2879
- Thu Dec 08, 2005 7:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSD.GetStatus - Improper data type
- Replies: 8
- Views: 2879
Tamas, a quick look at the DSD.GetStatus routine shows that it is accessing the file variable (the job's status file). The error message means that this file has not been "opened" or that somehow else the file pointer has been invalidated. This file pointer is set as a function of the DSAttachJob() ...
- Thu Dec 08, 2005 7:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Padding String With Blank
- Replies: 6
- Views: 1607