Search found 53125 matches

by ray.wurlod
Fri Dec 28, 2007 12:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conditional Join in DS
Replies: 0
Views: 1047

Split the data into two streams, one where the value is "ABC", the other where it isn't. Process the two streams appropriately. If necessary (and only if necessary) bring the two streams back together using a Funnel stage.
by ray.wurlod
Fri Dec 28, 2007 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting error while saving table definition
Replies: 5
Views: 1588

I think this is entirely within the client. Can you reproduce the problem from a different Designer client (that is, one on a different machine)?
by ray.wurlod
Fri Dec 28, 2007 12:48 am
Forum: General
Topic: Oracle Connection Sharing Issue?
Replies: 1
Views: 1118

I've seen it with shared containers, even before version 8. I imagine that something similar happens with connectors - only one person can have it open at a time. The compiled job, on the other hand, uses a reference to the shared container (or connector) so that as many jobs as need to use the logi...
by ray.wurlod
Fri Dec 28, 2007 12:45 am
Forum: General
Topic: Decimal Conversion
Replies: 4
Views: 1611

This is fixed-width data. The field width is 12. Therefore the implied data type is Char(12). Whatever you specify to represent null in this field must contain exactly 12 characters. In the Columns grid of the Sequential File stage scroll right until you find NULL Value and supply values there that ...
by ray.wurlod
Thu Dec 27, 2007 7:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple instance invocation from a shell script
Replies: 9
Views: 2505

Time to mark the thread as Resolved, then?
by ray.wurlod
Thu Dec 27, 2007 6:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob -report
Replies: 8
Views: 7186

Only by rewriting dsjob. Source code is in the Developer's manuals.
by ray.wurlod
Thu Dec 27, 2007 6:53 pm
Forum: General
Topic: New Year Wishes
Replies: 15
Views: 4319

Would that be 2008, 2009 and 2010 then?
:lol:
by ray.wurlod
Thu Dec 27, 2007 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a value from a file and database
Replies: 4
Views: 932

Command output probably has linefeed(s). You need to convert these to "" in addition to anything else you want to do.

Code: Select all

Trim(Convert(@FM,"",EC.$CommandOutput))
by ray.wurlod
Thu Dec 27, 2007 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Query error in Datastage
Replies: 5
Views: 4184

In which column in the Columns grid did you specify the 150? This error usually arises from having a VarChar column with its Precision left empty.
by ray.wurlod
Thu Dec 27, 2007 2:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequence features
Replies: 3
Views: 1527

Even easier, when you have this page open in Designer, click on the Help button. Then click on the check boxes in the help screen and all will be revealed!

They've put a lot of work into DataStage help over the years, it's only right that we should use it from time to time.
by ray.wurlod
Thu Dec 27, 2007 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob run sequential execution
Replies: 2
Views: 1177

I'd prefer to use a master sequence rather than a script to do this.
by ray.wurlod
Thu Dec 27, 2007 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: STOP/KILL a job
Replies: 8
Views: 5405

Add an Exception Handler and Terminator to your job sequence. The Terminator will look after issuing the stop requests.
by ray.wurlod
Thu Dec 27, 2007 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About a warning
Replies: 4
Views: 1473

(Slightly off topic)
Sequential File stage can run in parallel, except under very specific circumstances. These include writing to one file and reading from one file with number of readers per node set to 1.
by ray.wurlod
Thu Dec 27, 2007 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage 8.0 Installation
Replies: 9
Views: 2677

According to IBM the only versions supported for XMETA are DB2 version 9, Oracle version 10g or Microsoft SQL Server 2003.
by ray.wurlod
Thu Dec 27, 2007 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob -report
Replies: 8
Views: 7186

Looks like you're getting the individual partition (instance) row counts via DSJ.INSTROWCOUNT - which returns a delimited list of row counts. If you just want the total rows across all partitions, prefer DSJ.LINKROWCOUNT as the fourth argument to DSGetLinkInfo().