Search found 53125 matches

by ray.wurlod
Mon Oct 24, 2005 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to give derivation in Lookup stage
Replies: 2
Views: 1001

Identify the second column of the lookup Data Set as key. Make your "lookup failed" rule Continue.
by ray.wurlod
Mon Oct 24, 2005 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: were clause in filter
Replies: 10
Views: 2273

Not unless you show exactly how you used the FIELD function. I can't read your mind and am not prepared to waste time guessing what you might have done.
by ray.wurlod
Mon Oct 24, 2005 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS Installation
Replies: 2
Views: 934

The only way to install NLS is to go through the server installation process again.
by ray.wurlod
Mon Oct 24, 2005 3:17 pm
Forum: IBM QualityStage
Topic: INVp.FRQ Report Not Accurate
Replies: 1
Views: 1954

The percentages can be rounded, but the counts ought to be correct. The only think I can think of is what Ashok has already highlighted, that there are NULL values. But I've usually found that even these are counted correctly.
by ray.wurlod
Mon Oct 24, 2005 3:14 pm
Forum: Site/Forum
Topic: datasatgehunter
Replies: 2
Views: 2351

... and we DON'T double-post, and we DON'T post on inappropriate forum (this one is about suggestions for improving DSXchange). Consider yourself castigated.
by ray.wurlod
Mon Oct 24, 2005 2:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create multiple Records from single record
Replies: 16
Views: 4938

Welcome aboard. :D Re-read the thread from the top, where the original line had ten columns of which the final two delimited fields specified what should occur in the output. Your question substitutes four for ten and can be solved in exactly the same ways. Not even any requirement to change the rou...
by ray.wurlod
Mon Oct 24, 2005 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: were clause in filter
Replies: 10
Views: 2273

... but a Modify stage is lower impact and therefore likely to be more efficient than a Transformer stage
by ray.wurlod
Mon Oct 24, 2005 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Clarification required about Cluster Environment
Replies: 7
Views: 1311

Yes. Read the chapter on configuration files in the Manager manual, particularly the sections on resources. Data Sets are automatically partitioned across all the processing nodes in the configuration, unless explicitly constrained into a node pool or a disk resource pool by means of stage properties.
by ray.wurlod
Mon Oct 24, 2005 1:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between DS Transform, DS Routine, Function
Replies: 4
Views: 2762

Yes, if you're worried about less than a millisecond in an entire job run. When a routine is first called (for row #1) it has to be found in the Catalog and loaded into memory. After that its exectuable code is in memory and its entrypoint address is cached. The down side is that, if the definition ...
by ray.wurlod
Mon Oct 24, 2005 1:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is merge explain with simple example
Replies: 2
Views: 1017

On the other hand, I would be happy to be engaged to read the manuals on your behalf. A word of warning, though, I charge substantially more than the US$38/hour postulated elsewhere.
by ray.wurlod
Mon Oct 24, 2005 1:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to write routine
Replies: 2
Views: 893

How To Write Routine (server routine) Start with a specification of what you want to achieve. The specification is written in normal language, for example English. Formalize the input arguments needed; seek opportunities to make a more flexible reusable component. Determine whether your need is a b...
by ray.wurlod
Mon Oct 24, 2005 12:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Basic to handle file
Replies: 11
Views: 2940

WRITESEQF guarantees an immediate flush. There's also a FLUSH statement, and you can use the NOBUF statement to make I/O to this particular file non-buffered. You can certainly treat the file as a dynamic array but, to do this, you must open its parent directory with OPENPATH then read the entire fi...
by ray.wurlod
Mon Oct 24, 2005 12:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Normalizing options in Hashed Files
Replies: 2
Views: 757

UniVerse actually supports eight levels of nesting. Can you think or even imagine in eight dimensions? One simplistic explanation I like is that, in these non first normal form databases, you can have a cell with a "data type" of "table". Unless you've got such nested data, don't worry about it. If ...
by ray.wurlod
Mon Oct 24, 2005 12:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Clarification required about Cluster Environment
Replies: 7
Views: 1311

The default configuration is the one you see as "default" in the configuration file viewer/editor in Manager client.
by ray.wurlod
Sun Oct 23, 2005 4:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic hashed files and Static hashed files - pros and cons
Replies: 7
Views: 1476

MFILES is best sized as large as possible, subject to the restriction that you don't exceed the UNIX limit (NFILE) and reserve eight file units. That is, MFILES <= NFILE - 8 It doesn't really matter what it is you're opening. For UniVerse, you also reserve a file unit per UV/Net connection and one f...