Search found 53125 matches

by ray.wurlod
Thu Jul 19, 2012 5:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_ORACLE_PRESERVE_BLANKS
Replies: 12
Views: 4988

Are you sure it's a VARCHAR not a CHAR in the database? If it were CHAR then the database itself might pad with space characters.
by ray.wurlod
Thu Jul 19, 2012 5:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Non-greedy pattern matching?
Replies: 3
Views: 2058

How about being just slightly more specific with your mask? "0N'.'0N1A0N" in conjunction with the MatchField() function should work with a full (five piece) scientific notation number. If the number is 1.234e10 then: MatchField(InLink.TheNumber, "0N'.'0N1A0N",1) returns "1&q...
by ray.wurlod
Thu Jul 19, 2012 2:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_ORACLE_PRESERVE_BLANKS
Replies: 12
Views: 4988

You asked it to preserve blanks and it did so. What's the problem?
by ray.wurlod
Thu Jul 19, 2012 2:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how i can achieve this result in datastage 7.5 px
Replies: 11
Views: 3536

Upgrade to the current version and use a range lookup.

Otherwise do a sparse lookup as indicated, looking for the largest date smaller than your lookup date for that particular key value.
by ray.wurlod
Wed Jul 18, 2012 6:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Copy from Dataset
Replies: 3
Views: 1230

You can use orchadmin to dump the records and a redirection operator ( > )to write them into a file.
by ray.wurlod
Wed Jul 18, 2012 6:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Funnel job is aborted with "Sort Funnel" options
Replies: 2
Views: 1067

Have you specified one or more sort keys in the Funnel stage? That is, columns that have to have their sorted order preserved? Note too that the funnel stage does not sort - it expects the data to be correctly sorted (and partitioned) on all inputs.
by ray.wurlod
Wed Jul 18, 2012 6:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage Level Config File & Conditional Schema
Replies: 6
Views: 3188

Welcome aboard. This is not new. You can only load environment variables as job parameters if those environment variables are defined at project level. There may be one exception to this, if the special token $ENV is used as the default value. In this case, you are instructing DataStage to seek the ...
by ray.wurlod
Wed Jul 18, 2012 6:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need opinion about this scenario...
Replies: 3
Views: 1382

Ah. Consultant, derived from "con" and "insult".
:wink:
by ray.wurlod
Wed Jul 18, 2012 6:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Fileset,Fileset or Dataset for Reference
Replies: 9
Views: 3106

It's always a compromise. Data Sets don't need to invoke import operator; they work with copy. I believe Lookup File Sets do need the overhead of import (for the data, not the index). So, with Data Sets you need to build the index, with Lookup File Sets you have to translate the data. Arnd's results...
by ray.wurlod
Wed Jul 18, 2012 4:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to enable Debug Bar for parallel jobs in DS 8.5
Replies: 8
Views: 3206

Sorry, that was a misdirection (from a different product). In 8.7 I have no issue displaying the debug bar.
by ray.wurlod
Tue Jul 17, 2012 7:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null handling function called on a not nullable field
Replies: 4
Views: 8731

Seems to me that column1 is defined as not nullable and you've used an IsNull() function on it. DataStage has objected to this.
by ray.wurlod
Tue Jul 17, 2012 7:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Fileset,Fileset or Dataset for Reference
Replies: 9
Views: 3106

When you use a Lookup stage the reference input is loaded into memory and an index is created on its defined key on the fly. Except that, if a Lookup File Set is used, it has the index created within its structure at the time that it is created/populated. That means that the cost of creating the ind...
by ray.wurlod
Tue Jul 17, 2012 6:39 pm
Forum: General
Topic: Multiple versions of Information server
Replies: 7
Views: 1667

I believe that, if environment variable DSHOME is set, the scripts prefer that value to anything specified in /.dshome.

That said, I also believe that IBM explicitly forbids any other 8.x version being installed alongside 8.5.
by ray.wurlod
Tue Jul 17, 2012 6:37 pm
Forum: General
Topic: Error 81002 waiting for job
Replies: 8
Views: 2811

The job isn't actually getting to start, so there's no surprise that there are no target transactions. Is your (DataStage engine) system too heavily loaded?