Search found 53125 matches

by ray.wurlod
Fri Feb 08, 2008 5:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP
Replies: 7
Views: 1405

Lose the quotes around Arg1.

Code: Select all

Command = Arg1
by ray.wurlod
Fri Feb 08, 2008 5:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencer Execute Command Activity
Replies: 10
Views: 2421

Did you select the activity variable from a menu (expression editor) or type it in? The correct activity variable name has the name of the Execute Command activity, then a dot, then $CommandOutput (note the capital "C"). Incidentally, the correct terminology is "job sequence". A Sequencer is a compo...
by ray.wurlod
Fri Feb 08, 2008 4:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mathematics in ExecSh
Replies: 7
Views: 999

So this is user-written after-job subroutine, not ExecSH? This is new information. Forgive us for being tricked by your Subject! I always use DSGetParamInfo() to retrieve the value of a job parameter in a user-written routine. Others will tell you that it is not strictly necessary; I find that it gi...
by ray.wurlod
Fri Feb 08, 2008 4:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise NLS warning !
Replies: 3
Views: 1054

It means that NLS_LANG, the environment variable that Oracle uses for character map recognition, has not been set.
by ray.wurlod
Fri Feb 08, 2008 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning.
Replies: 3
Views: 641

All warnings are OK in the sense that DataStage software has been coded so as to generate them. You can prevent them (in this case by setting the PWD environment variable) or you can demote/suppress them. Never neglect them. Some are bad things, some simply report "unusual" (do not occur every run) ...
by ray.wurlod
Fri Feb 08, 2008 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process finished and still appears to be still running.
Replies: 5
Views: 891

Status 2 (finished with warnings) will not affect the batch/job control/job sequence. Please answer the questions about the status of the jobs as reported in Director. I find that my statement of belief about the BASIC Transformer is perfectly clear. I have intentionally not given the reasons behind...
by ray.wurlod
Fri Feb 08, 2008 4:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Add Multivalue Counter into the output
Replies: 1
Views: 780

Normalized data are extracted using UNNEST (examine the SQL) and therefore contain no value marks.
However, because all rows for any particular @ID come out together (necessarily), you could use a simple stage variable to carry the counter. Detect when @ID changes to reset to 1.
by ray.wurlod
Fri Feb 08, 2008 4:44 pm
Forum: General
Topic: DB2II apply job passing row data to DS job
Replies: 4
Views: 1736

There seems to be a current thread on this in the SOA Edition forum.
by ray.wurlod
Fri Feb 08, 2008 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP using DB2 stage as Source
Replies: 1
Views: 702

Try it. Let us know.
by ray.wurlod
Fri Feb 08, 2008 2:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Vertical Pivot Result to Different Columns
Replies: 6
Views: 1262

And your reason for this? It's like arguing that you will only use Transformer stages in your jobs because all your other jobs use Transformer stages. If you insist on using parallel job either make absolutely sure that the data are correctly partitioned and sorted and/or execute in sequential mode.
by ray.wurlod
Fri Feb 08, 2008 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process finished and still appears to be still running.
Replies: 5
Views: 891

Search!

What are the status values as reported in Director?

Beware of anything reported from the BASIC Transformer stage; I am not totally convinced that its interface to the job monitor is totally accurate.
by ray.wurlod
Fri Feb 08, 2008 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer stage at the begining of a Job
Replies: 11
Views: 2643

The Palette is only a developer's aid. It is fully customizable. You can put whatever you like wherever you like.
by ray.wurlod
Fri Feb 08, 2008 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Resetting a job
Replies: 13
Views: 3181

When you reset the job, does its status change to "has been reset"?
by ray.wurlod
Fri Feb 08, 2008 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple value in job parameter
Replies: 11
Views: 3283

Anyone looked at the score, rather than the generated OSH?
by ray.wurlod
Fri Feb 08, 2008 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to pass two values from parameter
Replies: 4
Views: 876

In particular, you need to manage the single-quote characters, required in the context of the IN clause, when passing from a job parameter.