Search found 53125 matches

by ray.wurlod
Mon Jul 09, 2007 5:24 pm
Forum: General
Topic: How DS processes are managed?
Replies: 3
Views: 1568

An answer from a slightly different perspective. (1) Resource allocation in server jobs and job sequences is "on demand". The "file" in which the demands are recorded is not, indeed, a file but rather a database table in the Repository called RT_CONFIGnnn where nnn is the job number. Records in this...
by ray.wurlod
Mon Jul 09, 2007 5:12 pm
Forum: General
Topic: Probelm regarding Jobsequencer.
Replies: 9
Views: 2855

Downstream of the Execute Command activity - on any activity (Job Activity, Routine Activity, etc.) when you are entering a job parameter value you can nominate one of the upstream activity variables - in this case the output from your Execute Command activity. Assuming you're on version 7.5, you ca...
by ray.wurlod
Mon Jul 09, 2007 12:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import of Numerical fields
Replies: 2
Views: 749

Delimited or fixed-width source? If delimited there's nothing; int32 can have up to 10 digits. Your job will need to enforce the business rule downstream. Or you could declare it as string[3] for the import, and convert to int32 subsequently.
by ray.wurlod
Mon Jul 09, 2007 12:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: framewor inserted sorts
Replies: 2
Views: 1136

My preference is to use an explicit Sort stage to tell DataStage not to sort. By this means I can document what the job is doing, to aid the future maintainer, and not have to be concerned whether the environment variables are set correctly in test and production.
by ray.wurlod
Mon Jul 09, 2007 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multi-instance job appending DataSet.
Replies: 5
Views: 2312

Data Sets work like text files, only in a parallel environment. It is the operating system that limits you, not DataStage. Therefore there is no workaround in DataStage.
by ray.wurlod
Mon Jul 09, 2007 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on Server Routines
Replies: 1
Views: 870

If the routine exists in your repository you can examine its documentation and source code, which will tell you what (if anything) you need to provide in the Input Values field.
by ray.wurlod
Mon Jul 09, 2007 12:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calculating Factorial in DS Routine returning junk values
Replies: 9
Views: 3251

But the hashed file solution will be WAY easier on memory.

Is it not said that before you can define recursion you need to define recursion?
by ray.wurlod
Mon Jul 09, 2007 12:19 am
Forum: IBM QualityStage
Topic: Another address parsing question
Replies: 4
Views: 1627

That's why I had to ask the question about "/" in the STRIPLIST. It couldn't have parsed "1/2" as a single token. I think your first solution was better.
by ray.wurlod
Mon Jul 09, 2007 12:17 am
Forum: IBM QualityStage
Topic: How do I split a mistyped address?
Replies: 3
Views: 1369

You're right of course, a pattern override does not provide the mechanism for splitting the token, so you'll need to use PAL. Not having the books with me at the moment (and not being fluent in PAL) I'll have to postpone that answer. Meanwhile, take a scan through the PAL manual; you might spot some...
by ray.wurlod
Sun Jul 08, 2007 5:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reference links to the lookup stage
Replies: 1
Views: 722

There can be more than one in the case of normal lookups.

There can only be one if it is a sparse lookup.

You've quoted the manual out of context. But you've understood the rules.
by ray.wurlod
Sun Jul 08, 2007 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling Nulls in Stage Variables....
Replies: 4
Views: 1233

Please verify whether this is a server job (as per job type) or parallel job (as per forum in which posted). The answer will depend upon this fact.
by ray.wurlod
Sun Jul 08, 2007 5:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating 64 bit hash file
Replies: 23
Views: 5341

... which is precisely what you get with a USING clause.
by ray.wurlod
Sun Jul 08, 2007 5:52 am
Forum: IBM QualityStage
Topic: How do I split a mistyped address?
Replies: 3
Views: 1369

Override for >T in the xxADDR rule set.

">" is a "mixed, leading numeric" token
by ray.wurlod
Sun Jul 08, 2007 5:51 am
Forum: IBM QualityStage
Topic: Another address parsing question
Replies: 4
Views: 1627

Is "/" in your STRIPLIST ? If so you only have five pattern components to parse.

How do you know the correct street type is ST ?
Use a pattern override for ^R^
by ray.wurlod
Sun Jul 08, 2007 5:49 am
Forum: IBM QualityStage
Topic: Address parsing questions
Replies: 5
Views: 1938

Through the GUI only via a rules override.