Search found 53125 matches

by ray.wurlod
Thu Jan 31, 2008 8:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Appending Multiple column names
Replies: 3
Views: 1048

Daunting, tedious, but not difficult. Suggestion, build a few at a time in stage variables: there is an upper limit on the length of an expression.

And beware of nulls.
by ray.wurlod
Thu Jan 31, 2008 8:31 am
Forum: General
Topic: Viewing Premium content
Replies: 18
Views: 5854

I don't believe so. Certainly the posted quote is truncated. I have no convenient way to test your theory.
by ray.wurlod
Thu Jan 31, 2008 7:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: protected project
Replies: 1
Views: 803

Clicking on Help would have answered this question. A protected project is protected mainly from, you guessed it, developers!

There's another DataStage role (Production Manager) which is the only one that can load objects into a protected project.
by ray.wurlod
Thu Jan 31, 2008 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance tunning
Replies: 15
Views: 4323

tunning: (pp)
filling a tun

tun: (n)
1. a large cask for holding liquids, esp. wine, ale or beer
2. a measure of liquid capacity, usually equivalent to 252 wine gallons

No wonder there's a need to want to save space! :lol:
by ray.wurlod
Thu Jan 31, 2008 7:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how can use ISNULL function in datastage
Replies: 2
Views: 8673

You use it anywhere an expression can be used. In a Transformer stage this includes stage variable initialization, stage variable derivation, output link constraint expressions and output column derivation expressions. You can use IsNull() in expressions in job sequences also. And you can use the fu...
by ray.wurlod
Thu Jan 31, 2008 7:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: diff. between change capture and difference stage
Replies: 3
Views: 1496

The outputs are different also. And the Compare stage gives yet another variant.
by ray.wurlod
Thu Jan 31, 2008 7:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate Concept
Replies: 3
Views: 1553

OSH code is not executable, except in the appropriate virtual machine. It's a similar model to Java or Perl (or even DataStage BASIC) in this respect. Orchestrate shell scripts are not executable as operating system executables.
by ray.wurlod
Thu Jan 31, 2008 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamically get metadata
Replies: 1
Views: 1018

Are they truly fixed width? Certainly the examples you posted are not. You probably can use schema files, but only downstream of reading the single field first. Perhaps you can parse in a Transformer stage, perhaps you can parse in a Column Import stage. Perhaps you can get more coherent requirements.
by ray.wurlod
Thu Jan 31, 2008 7:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple value in job parameter
Replies: 11
Views: 3283

What precisely do you mean by "not accepting"?
by ray.wurlod
Thu Jan 31, 2008 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate Operators guide
Replies: 1
Views: 826

You get the "OEM 7.5 manuals" from IBM through your support provider. They should be at no charge if delivered as PDF documents.
by ray.wurlod
Thu Jan 31, 2008 7:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup stage
Replies: 2
Views: 874

This is really the same question as the one in this post which was also posted by you today.
by ray.wurlod
Thu Jan 31, 2008 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic:
Replies: 3
Views: 5066

Setting Length to a positive value should be all that's required, unless you're using a schema file in which case you need to get it right (for example string[max=20]) in the record schema described therein. Enable the environment variable that causes player processes to log the actual schema each i...
by ray.wurlod
Thu Jan 31, 2008 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup reference link
Replies: 8
Views: 2557

Of course you don't need to partition. Just don't expect correct results if you don't. Even in an SMP environment, you need Entire partitioning to make use of shared memory. If you choose some other partitioning algorithm (hopefully a key-based algorithm such as Hash or Modulus) then any given key v...
by ray.wurlod
Thu Jan 31, 2008 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: After Job Server Routine
Replies: 12
Views: 3464

Then what you now need to do is post the syntax that does work, and mark the thread as Resolved.
by ray.wurlod
Thu Jan 31, 2008 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Codepageconversion for BINARY fields in DB2 stage - why?
Replies: 3
Views: 1096

Welcome aboard. All the documentation I've read suggests that binary data types are not supported at all in server jobs. So the fact that you're reading them at all is a bonus. It is possible to set NLS maps on a per-column basis, though it will slow processing marginally. I can only suggest that yo...