Search found 53125 matches

by ray.wurlod
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

I seem to recall that there's a Hive connector downloadable from developerWorks. Maybe that supports sparse lookup also. (I'm not currently in a position to be able to check.)
by ray.wurlod
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

Review your xpath expressions.
by ray.wurlod
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

The Big Data File Stage generates MapReduce script within Hadoop and executes that when called upon to do so.
by ray.wurlod
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...
by ray.wurlod
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

Don't be inconsistent in your use of string and ustring.
by ray.wurlod
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

:oops: My bad. Editing original response.
by ray.wurlod
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") 
in a BASIC Transformer stage.

(Edited from "MX0C" which is hexadecimal.)
by ray.wurlod
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:

Code: Select all

Right(Space(jpLength):InLink.TheValue, jpLength) 
where jpLength is the desired length provided as a job parameter.
by ray.wurlod
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

It's always been present, though the mechanism has changed. Every field has a "drop on import" property.
by ray.wurlod
Mon Mar 24, 2014 1:47 pm
Forum: General
Topic: Subroutine failed to complete successfully (30107)
Replies: 7
Views: 3377

Can you log in with Administrator client (which uses a different mechanism)?
by ray.wurlod
Mon Mar 24, 2014 1:46 pm
Forum: General
Topic: How to setup local repository tier
Replies: 2
Views: 1039

Follow precisely the instructions in the Planning, Installation and Configuration Guide.
by ray.wurlod
Mon Mar 24, 2014 1:44 pm
Forum: General
Topic: Datastage job Status Code=2
Replies: 8
Views: 5951

With parallel jobs not all "Fatal" errors are fatal (cause abort). You can get red icons in the log but the job status is "Finished (see log)". I don't agree with that, but it does sometimes occur.
by ray.wurlod
Mon Mar 24, 2014 1:42 pm
Forum: IBM QualityStage
Topic: Dynamic classification and word replacement
Replies: 2
Views: 2877

Yes but it would be very unwise in my opinion.

There is a purpose to "modify, test and deploy". In a word, it's known as "governance".
by ray.wurlod
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 ...