Search found 53125 matches

by ray.wurlod
Fri Jul 16, 2010 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About Join Stage in DataStage EE Edition
Replies: 1
Views: 1366

What do you mean by "incorrect"? Do you get correct results if you disable parallel execution (as a test)? Have you tried explicitly partitioning on FILE_ID using a key-based algorithm? Are both inputs sorted on FILE_ID?
by ray.wurlod
Fri Jul 16, 2010 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find Last Record.
Replies: 4
Views: 1722

In your case, the last 1 record, and the tail stage must run in sequential mode so that it only extracts one "last" record.
by ray.wurlod
Fri Jul 16, 2010 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding gaps in the dates
Replies: 10
Views: 2128

With all those words, I can't see how it would be easier. You could pre-process INPUT to determine start and end dates.
by ray.wurlod
Fri Jul 16, 2010 1:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: non-equality based lookup
Replies: 2
Views: 1275

Re: non-equality based lookup

DataStage Home Activity Discussion Groups Contests Lounge Members Ask a Question DataStage| The DataStage group is for the discussion of technical issues that arise during the installation or daily administration of IBM InfoSphere DataStage software. Home | Invite Peers | More Data Warehouse Groups...
by ray.wurlod
Fri Jul 16, 2010 1:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I compare two CSV files using DataStage?
Replies: 14
Views: 10719

It's not really a DataStage task, but perhaps you could perform a full outer join using a Merge stage. This will not yield differences, but you didn't ask for that.
by ray.wurlod
Thu Jul 15, 2010 9:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding gaps in the dates
Replies: 10
Views: 2128

Why not just generate all dates and perform a lookup against your INPUT?
by ray.wurlod
Thu Jul 15, 2010 7:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get the Row Count
Replies: 15
Views: 4971

A more flexible approach (for example per-node) is available. Will post details later (probably on the weekend). Tres busy at the moment.
by ray.wurlod
Thu Jul 15, 2010 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject link in the ORACLE CONNECTOR
Replies: 6
Views: 4761

Drag second link from stage, right click on second link and choose "convert to reject". Pretty much everything else happens automatically, including sql code appearing on the reject link.
by ray.wurlod
Thu Jul 15, 2010 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Tuning
Replies: 10
Views: 4174

If you're using SMP architecture Entire partitioning is essentially free - one copy of the Data Set is emplaced in shared memory and used by all nodes.
by ray.wurlod
Thu Jul 15, 2010 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer logic
Replies: 8
Views: 3226

Once you get yourself a premium membership the entire post will be visible.
by ray.wurlod
Thu Jul 15, 2010 2:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate code for Data Browser
Replies: 6
Views: 2462

It's not made visible.
by ray.wurlod
Thu Jul 15, 2010 2:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds 8.1 not found for valid hash lookups???
Replies: 7
Views: 2261

Have you identically trimmed both the source column value and the reference key column value?
by ray.wurlod
Thu Jul 15, 2010 4:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to generate an empty line.
Replies: 3
Views: 1007

Add an extra line terminator character to the end of each CTR record.
by ray.wurlod
Thu Jul 15, 2010 4:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate code for Data Browser
Replies: 6
Views: 2462

In server jobs the browser uses the same technique as row limiting in the Transformer stage - it's just not made visible. I think "they" assumed that no-one would want to waste their time looking at 10000 rows through this interface, which is not a particularly efficient one (a trade-off f...
by ray.wurlod
Thu Jul 15, 2010 2:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between external sort and inline sort
Replies: 7
Views: 10749

All three sorts (Sort stage, input link sort and inserted sort) cause a tsort operator to be included in the score. All three are governed by environment variables such as APT_TSORT_STRESS_BLOCKSIZE, obviously, because all three use the tsort operator.