Search found 53125 matches

by ray.wurlod
Fri Oct 07, 2005 4:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need advise implementing Sql Query
Replies: 4
Views: 1428

This is actually not possible in a single query. You need two passes through the data. You can do this with a nested query in the WHERE clause.

Code: Select all

column > (select avg(column) from table)
by ray.wurlod
Fri Oct 07, 2005 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: joining key columns
Replies: 28
Views: 10145

While it's true that the Join stage can have more than two input links, they do require a common key, as track_star has pointed out. One solution would be to use two cascaded Join stages; one to join tables A and B, the second to join that result and table C. Or you could use three Join stages: A an...
by ray.wurlod
Fri Oct 07, 2005 4:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we run a parallel Extender on s single processor
Replies: 13
Views: 3610

That would be a good trick! I assume you're not counting the conductor or player process in this, and combining all operators?

Hey, let's totally defeat the functionality of this parallel architecture that we've just spent a squillion dollars on! :roll:
by ray.wurlod
Fri Oct 07, 2005 4:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings - Defaulting <fieldname> in transfer from &qu
Replies: 4
Views: 2872

"They" are the good folks who manufacture the product.
by ray.wurlod
Fri Oct 07, 2005 12:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unexpected Network Error
Replies: 1
Views: 1857

You had an unexpected network error. An error in your network. Unexpected. It's nothing caused by or due to DataStage, and there's nothing in DataStage that you could have done, or can do, to prevent it. That's not entirely true, you could investigate methods to eschew use of the network. Talk to yo...
by ray.wurlod
Fri Oct 07, 2005 12:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Effective partition type for sorted input in Transformer
Replies: 22
Views: 7915

You have answered a different question than the one asked.

When you are writing to a sequential file, what partitioning method is mandated?
by ray.wurlod
Thu Oct 06, 2005 8:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD_GenerateEvents Warning in Server job
Replies: 4
Views: 1389

Wants a second opinion?

Old gag: "Doctor, I'd like to get a second opinion." "OK, I'll tell you again."
by ray.wurlod
Thu Oct 06, 2005 8:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings - Defaulting <fieldname> in transfer from &qu
Replies: 4
Views: 2872

Yup.

And it means that MetaStage can't do accurate lineage analysis or where used analysis.

I counsel against using RCP mainly for this reason. Remember, too, that "they" will be coercing you to use MetaStage for all reporting, by deprecating/removing alternatives.
by ray.wurlod
Thu Oct 06, 2005 8:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: installing datastage java pack on unix
Replies: 1
Views: 946

Read through install.sh before proceeding. This will convince you that everything it does is fairly innocuous.
by ray.wurlod
Thu Oct 06, 2005 5:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: .REJECTEDCODE = 0
Replies: 5
Views: 1798

What is Field1? Normally input columns are qualified with their link name. But it could be a stage variable, I guess. Anyway, it needs not to be null for the row to be put out along this link.
by ray.wurlod
Thu Oct 06, 2005 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential stage with multiple input links
Replies: 6
Views: 1660

In older releases of DataStage, the directory was a stage property and only the file entry name was a link property, so you needed separate Sequential File stages for each separate directory. This is no longer the case. Even so I prefer still to use separate Sequential File stages, because I tend to...
by ray.wurlod
Thu Oct 06, 2005 5:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file stage
Replies: 10
Views: 3032

Fire up the Hashed File Calculator on your DataStage CD. It's in the Utilities\Unsupported folder. Play and learn!
by ray.wurlod
Thu Oct 06, 2005 5:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: outer join thru hash file
Replies: 4
Views: 1324

If you think about it, the standard lookup in a Transformer stage is a left outer join, in that it returns NULL for every column from the reference input link if the lookup does not succeed.

You typically turn it into an inner join using an output link constraint expression.
by ray.wurlod
Thu Oct 06, 2005 5:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Working of Parameter Markers
Replies: 6
Views: 2507

I addressed a possible cause of Parameter marker text size exceeds allocated space
by ray.wurlod
Thu Oct 06, 2005 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: changing the hash file path to mounted directory at project
Replies: 7
Views: 1550

Alternative solution.

Do the export with (that is, including) default-valued properties. It's a larger export file, but everything is in it. Then the modification is straightforward.