Search found 53125 matches

by ray.wurlod
Fri Jan 26, 2007 4:42 pm
Forum: General
Topic: Ds can handle variable record length COBOL file?
Replies: 3
Views: 1652

Three questions, one answered.

How do you expect us to help us if you don't provide the requested information we need to do so?
by ray.wurlod
Fri Jan 26, 2007 4:38 pm
Forum: Site/Forum
Topic: DSXchange Tutorial for new members !!!
Replies: 2
Views: 2283

For best value this FAQ would need to be linked to from the Signup page and from the welcome email.

Should we require an "I have read and agree to the terms & conditions" check box?
by ray.wurlod
Fri Jan 26, 2007 5:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs Execution Error
Replies: 3
Views: 1037

Its severity is warning not because it's a failure, but because it is an unusual event. It occurs only the first time one of the KeyMgt... routines from the SDK is used. You will never see this message again in this project. SDKSequences is a hashed file in which these routines preserve the next val...
by ray.wurlod
Fri Jan 26, 2007 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance tuning
Replies: 7
Views: 1910

But it still has to DO the sorting and aggregation, and the DataStage clock is still running once that request has been sent.
by ray.wurlod
Fri Jan 26, 2007 5:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pass value between jobs
Replies: 19
Views: 6725

What value do you want to pass?
by ray.wurlod
Fri Jan 26, 2007 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: INROWNUM issue
Replies: 5
Views: 1294

Is the first line in your source file column headings?

Try using a stage variable, perhaps called svFirstTime, that is initialized to @TRUE and reset to @FALSE once a row has been processed. You will need a second stage variable to remember the prior row's value.
by ray.wurlod
Fri Jan 26, 2007 5:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Attempt to convert String value error
Replies: 6
Views: 1461

Use two separate Transformer stages. It's easier to understand, and you don't need to muck about with expressions. The first traps your business rule rejects; the second traps database rejects.
by ray.wurlod
Fri Jan 26, 2007 12:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dimension View
Replies: 8
Views: 2085

As a general rule we ALWAYS choose integer for foreign keys in star schemas, because they join the most efficiently.
by ray.wurlod
Thu Jan 25, 2007 10:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems in converting date to timestamp
Replies: 17
Views: 4413

Probably not. But there IS TimestampFromDateTime(date,time) which is documented in the manual.

I tend to use Modify stage for data type conversions. In the Modify stage one uses timestamp_from_date[time](date)
(Or omit the time, in which case midnight is used.)
by ray.wurlod
Thu Jan 25, 2007 9:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems in converting date to timestamp
Replies: 17
Views: 4413

It may need two - DateToTimestamp(StringToDate(...))
by ray.wurlod
Thu Jan 25, 2007 9:37 pm
Forum: General
Topic: Installing Oracle OCI 8i Plugin
Replies: 7
Views: 3334

I vaguely recall someone mentioinng at last year's conference (or maybe the previous year) that they (IBM) were working on a utility for this. Get your vendor to chase it up - maybe your vendor can even get on to the product manager (Keith Kohl).
by ray.wurlod
Thu Jan 25, 2007 9:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 with Parallel Server-Job
Replies: 12
Views: 7854

If you are planning to use CRC32 to detect change, don't. Parallel jobs have three different change detection stages - the one you choose depends on what format you require their output to be. The stages are Difference, Compare and Change Capture. None of these risks the false positive that CRC32 ca...
by ray.wurlod
Thu Jan 25, 2007 7:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fact to Fact
Replies: 8
Views: 2103

That, too.
by ray.wurlod
Thu Jan 25, 2007 6:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage V 8.0 Upgrade
Replies: 15
Views: 4960

lstsaur wrote:Two weeks to solve this kind of problem? Unbelievable.

Unbelievably fast, or unbelievably slow?
Bear in mind that the support folks are working on other people's queries too.
by ray.wurlod
Thu Jan 25, 2007 6:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dimension View
Replies: 8
Views: 2085

Or two lookups, against the same Lookup File Set. You will need to finagle the key column names, but that's no big deal - you can do it with Copy stage.