Search found 53125 matches
- Tue Mar 25, 2014 9:10 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sparse lookup for BDFS in WebService?
- Replies: 5
- Views: 2097
- Tue Mar 25, 2014 4:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to Map Columns from XML Stage
- Replies: 4
- Views: 2076
- Tue Mar 25, 2014 4:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sparse lookup for BDFS in WebService?
- Replies: 5
- Views: 2097
- Tue Mar 25, 2014 4:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: convert from String to Binary
- Replies: 11
- Views: 2723
- Tue Mar 25, 2014 4:27 pm
- Forum: General
- Topic: Use of parameter set in a Job Control
- Replies: 3
- Views: 1040
So what's your actual question? You've imposed some limitations on how the product works, so you have to work out how to code around them. But it's not clear exactly what you want to do. I'd guess that the answer lies in Parameter Set values files, but don't really have enough information to make th...
- Tue Mar 25, 2014 2:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Ustring to string conversion problem
- Replies: 1
- Views: 1139
- Mon Mar 24, 2014 5:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: convert from String to Binary
- Replies: 11
- Views: 2723
- Mon Mar 24, 2014 1:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: convert from String to Binary
- Replies: 11
- Views: 2723
Code: Select all
Oconv(TheString, "MX0B") (Edited from "MX0C" which is hexadecimal.)
- Mon Mar 24, 2014 1:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Schema file
- Replies: 8
- Views: 3959
Use a generic expression in the Transformer stage. For example:
where jpLength is the desired length provided as a job parameter.
Code: Select all
Right(Space(jpLength):InLink.TheValue, jpLength) - Mon Mar 24, 2014 1:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading selected fields from sequential file stage
- Replies: 3
- Views: 1206
- Mon Mar 24, 2014 1:47 pm
- Forum: General
- Topic: Subroutine failed to complete successfully (30107)
- Replies: 7
- Views: 3377
- Mon Mar 24, 2014 1:46 pm
- Forum: General
- Topic: How to setup local repository tier
- Replies: 2
- Views: 1039
- Mon Mar 24, 2014 1:44 pm
- Forum: General
- Topic: Datastage job Status Code=2
- Replies: 8
- Views: 5951
- Mon Mar 24, 2014 1:42 pm
- Forum: IBM QualityStage
- Topic: Dynamic classification and word replacement
- Replies: 2
- Views: 2877
- Sun Mar 23, 2014 6:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Delimited file parallel extraction.
- Replies: 2
- Views: 1427
You can. No constraints, although it's slightly more efficient when a fixed-length format is available. The issue is that, with delimited files, the reader has to approximate the cutoff locations for each Nth of the file, and then scan for the next line terminator. With fixed width this is a simple ...