Search found 137 matches

by dougcl
Tue Jul 20, 2010 12:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGINT in Director
Replies: 13
Views: 3937

SIGINT in Director

Hi folks, starting today, if I try to run jobs from Director, I get a job abortion with SIGINT. Jobs run fine when started in DS Designer. Ideas?

Thanks,
Doug
by dougcl
Tue Jul 20, 2010 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scratch Cleanup
Replies: 6
Views: 2140

Scratch Cleanup

Hi folks, I noticed that we are getting a growing number of old files in the scratch area. Here's an example: -rw------- 1 dsadm dsdev 2227442 Jul 12 16:49 etleng2node1.0000000000000014.00000000 Shouldn't the scratch area be clear after all the jobs are finished? Perhaps we are accidentally storing ...
by dougcl
Mon Jul 19, 2010 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash partitioning in Oracle Connector
Replies: 3
Views: 5053

the table partition algorithm and the DataStage partition algorithm are not the same. yep, seems to be the limiter. Looks like my "best practice" is to pull the data in parallel without sorting in the db, then hash partition and sort on the hash key in DataStage. My aim is to land all ext...
by dougcl
Fri Jul 16, 2010 5:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash partitioning in Oracle Connector
Replies: 3
Views: 5053

Hash partitioning in Oracle Connector

Hi folks, this might be along the lines of thinking out loud, but it seems to me that I will be using hash partitioning (in general) within DataStage jobs to support (in general) joins. At the same time, it is nice to use ORDER BY in the SQL select statements to reduce the memory burden in the DataS...
by dougcl
Fri Jul 16, 2010 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: performance tips
Replies: 13
Views: 5633

Hi folks, it is appropriate and commendable that a site establish coding practices before going into mass production. It is also likely that some sites are new to DataStage. It is therefore likely that someone completely new to DataStage is tasked with establishing the design guide for the developme...
by dougcl
Fri Jul 16, 2010 2:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Tuning
Replies: 10
Views: 6120

ray.wurlod wrote: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.
Good to know Ray, thanks. It appears that our system is not, uh, utilizing this feature at the moment.
by dougcl
Thu Jul 15, 2010 6:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dropping indexes using Before SQL Script
Replies: 1
Views: 884

Hi folks, never mind. I figured it out: ALTER TABLE dw_encounters_fact_new DROP CONSTRAINT dw_encounters_fact_new_pk ; DROP INDEX dw_encounters_fact_new_n01 ; DROP INDEX dw_encounters_fact_new_n02 ; DROP INDEX dw_encounters_fact_new_n03 ; DROP INDEX dw_encounters_fact_new_n04 ; DROP INDEX dw_encount...
by dougcl
Thu Jul 15, 2010 6:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dropping indexes using Before SQL Script
Replies: 1
Views: 884

Dropping indexes using Before SQL Script

Hi folks,
I want to drop all the indexes, load the table, and then build all the indexes.

I want to use the oracle Connector before and after SQL scripts to do so.

Does anyone have an example of an oracle script to drop indexes?

Thanks,
Doug
by dougcl
Thu Jul 15, 2010 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject link in the ORACLE CONNECTOR
Replies: 6
Views: 5609

Hi it appears to be possible if the connector is writing. It does not appear to be possible when the connector is reading.
by dougcl
Thu Jul 15, 2010 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Tuning
Replies: 10
Views: 6120

Hi folks, ramping up the number of partitions (two to sixteen) did indeed help considerably. I am now back up to 96K rows/sec. Unfortunately though, running this many partitions affects lookup stages that happen to be using the "entire" partitioning strategy. That required some rework in t...
by dougcl
Tue Jul 13, 2010 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Tuning
Replies: 10
Views: 6120

Hi guys, thanks for your interest. While I am only doing null handling at the moment, there will be column derivation too. There may be other things. So is it appropriate to ask if this is a typical performance hit in a transformer stage?
by dougcl
Tue Jul 13, 2010 1:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Tuning
Replies: 10
Views: 6120

Transformer Tuning

Hi folks, I've got a 15 column transformation stage, about 400 bytes per row, and I am doing a NullToValue replacement on each column (nothing else). My throughput drops from 108K rows/sec to 58K rows/sec as a result of adding this stage. This seems like a big hit. Are there tuning options, or is th...
by dougcl
Mon Jul 12, 2010 10:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP for unused columns
Replies: 4
Views: 2518

You could very easily accomplish the same functionality you are seeking by placing a copy stage in front of your target stage. Hi yes I thought of this after posting. So I envision having a big fat table def that is used to land a subset of the data (via column listing in the select statement) into...
by dougcl
Fri Jul 09, 2010 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP for unused columns
Replies: 4
Views: 2518

RCP for unused columns

Hi folks, I like the idea of creating table defs from the source database, attaching them to the db input connector, but then using the SQL builder to only select a few columns. I want to build the jobs and downstream stages according to the full table def, not the reduced one, so that if we decide ...
by dougcl
Fri Jul 02, 2010 11:20 am
Forum: General
Topic: DataStage/Workbench Table and Column Metadata Attributes
Replies: 4
Views: 2446

Ernie, again thanks for your help.
Doug