Search found 53125 matches

by ray.wurlod
Mon Mar 10, 2008 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rows to Column
Replies: 3
Views: 1198

Not in version 7. Pivot stage only performs a horizontal pivot (columns to rows). What you're seeking to do is a vertical pivot. Vertical pivot capability is suggested to be in the Pivot stage in version 8.1 (later this year).
by ray.wurlod
Mon Mar 10, 2008 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ClusterKeyChange
Replies: 5
Views: 2003

In a phrase, unsorted though grouped data.
by ray.wurlod
Mon Mar 10, 2008 3:56 pm
Forum: General
Topic: Hash Stage in PX
Replies: 11
Views: 2876

The vendor does claim to be compliant with standards as much as possible. I agree with Phil that behaviour with doubled quote characters (which IS a standard) does not comply. Has anyone raised this as an issue through their official support channel? Because that's the only way you'd ever get it fix...
by ray.wurlod
Mon Mar 10, 2008 3:52 pm
Forum: General
Topic: Modify all the jobs in a project
Replies: 16
Views: 5364

It's called the Manager client.
by ray.wurlod
Mon Mar 10, 2008 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: re running job
Replies: 6
Views: 1692

4. Take a snapshot when processing with DataStage. Next month execute a DIFFERENCE query to extract the data.

5. Take a snapshot when processing with DataStage. Next month perform a lookup against the snapshot. If the key is not found, a new row has been inserted.
by ray.wurlod
Mon Mar 10, 2008 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Perticular routine used by different # of ds jobs
Replies: 6
Views: 2085

Job control routines don't have names. However, in a DSX or XML export file they do have property names.
by ray.wurlod
Mon Mar 10, 2008 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cascade trim to multiple columns
Replies: 3
Views: 1830

Select all the columns you want to apply the function. With them selected right click and choose Derivation Substitution from the menu. In the field at the bottom enter Trim($1) and click OK, then Yes to All.
by ray.wurlod
Mon Mar 10, 2008 6:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSet problem
Replies: 12
Views: 5052

U has not participated thus far in this thread.
by ray.wurlod
Mon Mar 10, 2008 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generated OSH in UNIX
Replies: 5
Views: 1490

A combination of find and grep commands will do that for you. For example something like:

Code: Select all

find $projectdir -name '*.osh' -print | grep '&['

That way you don't need to know the location of the osh directories in advance.
by ray.wurlod
Mon Mar 10, 2008 6:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: insert statement along with sequence
Replies: 4
Views: 1156

You should only have nine columns in your job design. Therefore your parameter markers should be numbered :1 through :9. DataStage does not provide the value for the first column; that is supplied by the invoked sequence. The number of parameter markers must match the number of columns in the job de...
by ray.wurlod
Mon Mar 10, 2008 4:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to call server routine in parallel job
Replies: 6
Views: 2462

I have tried with the @INROWNUM.But its not giving the correct output. Can you help how to call server routine in parallel job. No. It's not the right thing to do. If you want a routine in a parallel job, write a parallel routine. If it's not giving the correct output, what IS the correct output? H...
by ray.wurlod
Mon Mar 10, 2008 4:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting environmental variables
Replies: 6
Views: 1928

You set environment variables in one shell (command) which finishes. Its environment is therefore lost. When you start dsjob this is a new process, with a new environment. What you need to do is create a script that sets the environment variables (and exports them) and then - in the same script - ex...
by ray.wurlod
Mon Mar 10, 2008 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to call server routine in parallel job
Replies: 6
Views: 2462

Why? There's a perfectly good system variable that will do that for you.
by ray.wurlod
Mon Mar 10, 2008 3:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to call server routine in parallel job
Replies: 6
Views: 2462

Why? There's a perfectly good system variable that will do that for you.