Search found 53125 matches

by ray.wurlod
Wed May 12, 2010 4:11 pm
Forum: IBM QualityStage
Topic: Standardization of vehicle make and model
Replies: 6
Views: 2706

If you can attend the IOD EMEA 2010 conference next week I am giving a presentation on rule sets on Friday morning.

This is based on material on rule sets available from DSXchange Learning Center on DVD.
by ray.wurlod
Wed May 12, 2010 4:09 pm
Forum: Site/Forum
Topic: Missing "Delete this post" link in DataStage Serve
Replies: 3
Views: 2997

This should only appear on your own posts. It IS there on mine. You have two choices: Edit/delete this post and Delete this post.
by ray.wurlod
Wed May 12, 2010 6:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output stage
Replies: 4
Views: 1407

Now read Ernie's post again.

You must break this task down into smaller chunks.
by ray.wurlod
Wed May 12, 2010 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Significance of DSAttachJob and DSDetachJob
Replies: 8
Views: 3697

You can use DSJ.ME directly in the routine, but you have to tell the routine what DSJ.ME means. There is a header file that you need to include in your code ahead of any executable statement.

Code: Select all

$IFNDEF JOBCONTROL.H
$INCLUDE DSINCLUDE JOBCONTROL.H
$ENDIF
by ray.wurlod
Wed May 12, 2010 6:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion
Replies: 3
Views: 1283

Welcome aboard.

In one stage (at least) in your job design you have a dfloat column on an input link mapped to an sfloat column on an output link.

The full error message may name the stage. But you didn't post the full error message.
by ray.wurlod
Wed May 12, 2010 6:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: latest Datastge server Edition
Replies: 1
Views: 1006

8.1
by ray.wurlod
Wed May 12, 2010 6:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IBM® WebSphere DataStage and QualityStage
Replies: 0
Views: 1303

Don't do it. Version 8.0.1 is buggy. If you're going to version 8, make your first version 8.1.2.
by ray.wurlod
Wed May 12, 2010 12:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to perform self join
Replies: 10
Views: 3366

Yes, both the Join stage inputs read data from the same file.
by ray.wurlod
Wed May 12, 2010 12:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oacle Enterprise Upsert on Partitioned table
Replies: 6
Views: 1439

What is the "normal configuration" at your particular site?
by ray.wurlod
Wed May 12, 2010 12:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert and update data
Replies: 3
Views: 1399

The row count on the link shows how many rows were sent to the database server, not necessarily how many rows were loaded.

Are there any errors/warnings reported?

Show us exactly what you're doing in the DRS stage, it's usually easier to spot errors than to regurgitate the manual.
by ray.wurlod
Wed May 12, 2010 12:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Size limit for a Sequential file
Replies: 1
Views: 748

Moderator: please move to Server forum

DataStage imposes no limit.

The operating system may.
by ray.wurlod
Wed May 12, 2010 12:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error adding to schedule in windows environment
Replies: 6
Views: 4257

My guess is that your command search list (PATH environment variable) is finding the MKS Toolkit at command ahead of the Windows one.
by ray.wurlod
Wed May 12, 2010 12:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid Precision
Replies: 9
Views: 3491

My guess is that you have some unbounded VarChar column definitions - that is, data type VarChar but no Length specification. DataStage can handle that, but SQL Server cannot.
by ray.wurlod
Tue May 11, 2010 5:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Input file for Bapi Stage
Replies: 3
Views: 1284

Umm.. don't know if you can do this directly, but you could post-process the data with $DSHOME/bin/format.conv (also known as $DSHOME/bin/fnuxi) command.
by ray.wurlod
Tue May 11, 2010 5:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Vertical Pivot Or Transformer..
Replies: 7
Views: 2606

Forget Pivot, it's not really what you're doing. You're doing selective accumulation. You could do this with a Transformer stage, but I like the suggestion of Max() function in Aggregator stage.