Search found 53125 matches

by ray.wurlod
Mon Jun 06, 2011 9:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Output 10 records for 1 record
Replies: 4
Views: 8238

If it looks like an interview question, sounds like an interview question and quacks like an interview question...

Not the first time this one has been asked here, either.
by ray.wurlod
Mon Jun 06, 2011 9:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage job error
Replies: 12
Views: 3619

Row limits for reject (and other) output links from a Transformer stage are set in the grid dialog where you set constraint expressions and identify the reject-handling link. (They are not set as run-time limits.)
by ray.wurlod
Mon Jun 06, 2011 9:02 pm
Forum: General
Topic: DS Admin client access
Replies: 2
Views: 1659

DataStage Administrator should present you with a list of projects and wait until you have selected one. If this is not the case do contact your official support provider, because this is not correct behaviour.
by ray.wurlod
Mon Jun 06, 2011 8:58 pm
Forum: General
Topic: datastage job not getting called through batch file
Replies: 11
Views: 5247

Start > Control Panel > System (Advanced) (Environment)

You may need to re-boot for environment variable changes to take effect.
by ray.wurlod
Mon Jun 06, 2011 8:56 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Setting a Baseline
Replies: 1
Views: 1547

Not sure whether the bug's in the product or in the documentation. I work around this problem by analyzing a virtual table containing only the columns in which I am interested.
by ray.wurlod
Mon Jun 06, 2011 5:10 am
Forum: General
Topic: Upgrade from DataStage 8.1 to 8.5
Replies: 7
Views: 6378

It is definitely NOT the same as migrating from version 7 to version 8. It is far simpler for a start. Are you intending to upgrade on the same machine, or install cleanly on a new server then migrate? The latter is recommended practice if you can manage it.
by ray.wurlod
Mon Jun 06, 2011 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unbalanced input from partition 1
Replies: 1
Views: 2722

This operator can appear, for example, if you're using Sort Merge as a collector algorithm or if you've specified a Sort Funnel. Your score will tell you precisely where the Sort Merge operator has been used. This operator has reported to you that there is a reportable imbalance in the number of row...
by ray.wurlod
Mon Jun 06, 2011 5:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage job error
Replies: 12
Views: 3619

That is not an error. That is an alert message. It informs you that the reject-handling link has been used, and how many rows passed along it.
by ray.wurlod
Mon Jun 06, 2011 5:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Identifying records with special characters
Replies: 9
Views: 2612

Or, more simply:

Code: Select all

Convert("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789","",Upcase(YourColumn))
by ray.wurlod
Sun Jun 05, 2011 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplication of records using Datastage
Replies: 4
Views: 1940

Yes. Do the test in stage variables. Have three outputs from the Transformer stage, each constrained by the same expression. Use a Funnel stage downstream to bring them together if that's required.
by ray.wurlod
Sun Jun 05, 2011 9:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NextSurrogateKey function and Oracle RAC multi-node
Replies: 7
Views: 3738

The function behaves in the same way as the stage.
by ray.wurlod
Sun Jun 05, 2011 5:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Joining two datasets.
Replies: 3
Views: 1992

Merge stage consumes rows from its Update input link(s). That is, they are deleted from the "reference" data set as they are used.
by ray.wurlod
Sun Jun 05, 2011 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NextSurrogateKey function and Oracle RAC multi-node
Replies: 7
Views: 3738

I can't answer that directly unless you tell me how your Surrogate Key Generator stage is progammed - that is, whether it uses a state file or a database sequence. In any case it does not "know" anything - it simply delivers the next block of key values each time it is invoked. Surrogate k...
by ray.wurlod
Sun Jun 05, 2011 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Data in Table Column
Replies: 11
Views: 3463

Even that is sub-optimal, because you re-evaluate Char(13) for every record. Better would be to evaluate Char(13) (and, possibly, Char(254)) when initializing stage variables, and not to derive those stage variables further. Then Convert(svFieldMark, svNewLine, InLink.TheString) to effect the conver...
by ray.wurlod
Sun Jun 05, 2011 3:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NextSurrogateKey function and Oracle RAC multi-node
Replies: 7
Views: 3738

No, what I am saying is that the first row into any cache is written out first.