Search found 42189 matches

by chulett
Mon Nov 11, 2013 11:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance issue reading data from Oracle connector
Replies: 16
Views: 6841

Re: Performance issue reading data from Oracle connector

When 6 fields are selected from oracle stage, the job finishes in less than 5 mins whereas the job takes around 30 mins to finish when 30 fields are selected. FYI - The time differential comes from the join and the amount of data it is throwing around, not any perceived 'performance issue' with the...
by chulett
Mon Nov 11, 2013 11:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance issue reading data from Oracle connector
Replies: 16
Views: 6841

In response to your stats - Rows per second is a fairly meaningless metric. You're better off comparing bytes per second using the total actual bytes rather than the ARL.
by chulett
Mon Nov 11, 2013 11:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance issue reading data from Oracle connector
Replies: 16
Views: 6841

Yes. At a very high level, more bytes = more time.
by chulett
Mon Nov 11, 2013 9:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataload from multiple tables, there is no join condition
Replies: 6
Views: 3215

(let me clarify here this col1 and col2 value will be same for that particular load) Should have clarified that right away. It's an important piece of information. and this variables were passed into sql queries whil loading the data. Can we do along the same lines using datastage. Of course, that'...
by chulett
Mon Nov 11, 2013 9:03 am
Forum: General
Topic: Deleted Jobs from Designer Client not removed from the proje
Replies: 2
Views: 660

Good information on SyncProject.sh here.
by chulett
Sun Nov 10, 2013 6:49 pm
Forum: General
Topic: ReStartablity of Sequence in case of warnings
Replies: 4
Views: 649

And for something 'out of the box' you'd need to ensure the jobs abort rather than simply end with warnings if you want that to be the restart point. You could do that a couple of different ways, one would be to drop the warning limit down so that the first warning aborts the job. Another would be t...
by chulett
Sun Nov 10, 2013 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataload from multiple tables, there is no join condition
Replies: 6
Views: 3215

Clear? Go back to whomever produced that specification and ask them how that is supposed to work. Without the join rules documented it is pretty much useless. All you know at this point is (I assume) what D & E records go in the table with a C record. But A & B? Who the heck knows? No-one on...
by chulett
Sun Nov 10, 2013 8:28 am
Forum: General
Topic: ReStartablity of Sequence in case of warnings
Replies: 4
Views: 649

Suggest patience... it is a weekend, after all.

Let's start at the beginning. Do you have checkpoints enabled in the Sequence job? Do you understand that restartability is driven by aborts, not warnings?
by chulett
Fri Nov 08, 2013 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicate records based on col's data
Replies: 5
Views: 2116

The Pivot stage does require separate columns but Transformer Looping has no such requirement.
by chulett
Fri Nov 08, 2013 7:35 am
Forum: General
Topic: Pre-built Cognos Reports for DataStage Operations
Replies: 4
Views: 1616

Re: Searching for "Pre - built Operations Analytical Re

MT wrote:@MODERATOR: still missing the option for DataStage Release 9!
Not a Moderator issue. :wink:

That goes back to the site owner / maintainer.
by chulett
Thu Nov 07, 2013 6:05 pm
Forum: General
Topic: shell script won't return when executed from datastage
Replies: 11
Views: 2899

Because they're not on a Windows server. The winexe software allows remote execution of Windows commands from 'UNIX'.
by chulett
Thu Nov 07, 2013 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Performance
Replies: 1
Views: 1184

There are far too many variables to list here. Just wanted to note that this is a DB2 / database SQL issue and has nothing to do with DataStage. Yes, a database will typically cache query information so that if it is rerun in close order it could possibly go much faster the second time. However, tha...
by chulett
Thu Nov 07, 2013 7:55 am
Forum: General
Topic: Routine which sums up is hanging
Replies: 7
Views: 2599

OK... so you are dumping a portion of the file into the dynamic array that DSExecute returns and then looping through that. I can see that technique 'working' for small volumes but would never had put something like that together. You are probably hitting the upper limit of what that dynamic array c...