Search found 181 matches

by seanc217
Tue Oct 24, 2006 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot stage poor performance
Replies: 2
Views: 1373

Pivot stage poor performance

I have a sequential file stage which goes to a transformer. One link out of the transformer goes to an Oracle stage and another goes to a pivot stage where I pivot 60 columns 9 times. I am getting very poor performance on this. If I remove the pivot stage and run the job it runs much faster. Anyway ...
by seanc217
Tue Oct 24, 2006 10:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting Reader per node on sequential file
Replies: 10
Views: 5758

Setting Reader per node on sequential file

Hi there,

What is an optimal setting for this?
If the answer is, it depends then what is the process for finding the optimal setting?

Do I continually increment it until I see no performance gain?

Thanks for the help!!
by seanc217
Tue Oct 10, 2006 12:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change capture
Replies: 5
Views: 1928

Yes. I changed the metadata in the columns page to reflect the change. However when I run the job, it does not recognize the change since the change that was make is actually a key in the change capture stage.
by seanc217
Mon Oct 09, 2006 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change capture
Replies: 5
Views: 1928

Yes, my column's metadata changed from varchar2(2) to varchar2(4). What about if I am trying to maintain a type 2 SCD? I would want to expire the current records and insert the new ones. With the change capture stage this would not happen because the column that changed is part of the change key. Th...
by seanc217
Sun Oct 08, 2006 9:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change capture
Replies: 5
Views: 1928

Change capture

I have a table where the key value has increased from 2 to 4. When I run the job it does not update this change and you cannot add it to the values property in the change capture stage, it errors and say it cannot be both a key and a value. How do people here handle this kind of change?

TIA.

Sean
by seanc217
Mon Sep 11, 2006 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Errors
Replies: 7
Views: 5764

Yes.

Same problem I have.
Still do. Engineering provided me a patch, but when I install it, it does not work. I have not heard anything new from them in quite some time now.

I would report it.

Sean
by seanc217
Fri Sep 08, 2006 12:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record level properties
Replies: 5
Views: 1354

Implicit should work. I have a file that has a variable piece to it. In front of the variable pieces are the legth of that field. By specifying that byte as the prefix, DataStage will know how to handle it.
by seanc217
Fri Sep 08, 2006 12:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C++ Comand to compile a routine on solaris
Replies: 5
Views: 2205

Try the .o library instead and define that in DataStage as an object.
Let me know if this works for you.

I could not get a .so to work on Linux but the .o does!

Sean
by seanc217
Wed Sep 06, 2006 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine questions
Replies: 3
Views: 2121

When compiling make sure to compile as a release not debug or else it will not work. I never got a dll to work. I compilied the code as a .lib and this works fine for me.

Let me know if you need more info.
by seanc217
Fri Sep 01, 2006 10:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Partitioned Table
Replies: 4
Views: 3450

How about a where clause on the partition key column. This will be very efficient.

I have a partitioned table that is partitioned on column extract_date. When I select out of it I select where extract = YYYYMMDD.

Hope this helps.
by seanc217
Thu Aug 17, 2006 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to combine 2 datasets from a database
Replies: 10
Views: 2238

Thanks for the reply,

Is there a way for DataStage to do this kind of operation?
Or is utilizing the database the best way?
by seanc217
Thu Aug 17, 2006 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to combine 2 datasets from a database
Replies: 10
Views: 2238

How to combine 2 datasets from a database

I have 2 datasets in an Oracle database that I want to combine. So for example let's say table 1 has the following values:

A
B
C

and table 2 has the following values:

D
E
F


I want the result dataset to be

A
B
C
D
E
F

What is the best way of going about this?

Thanks
by seanc217
Tue Aug 01, 2006 2:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiplication errors in PX?
Replies: 1
Views: 802

I traced this down to a patch IBM support provided me to fix an issue with tranformers with a large amount of columns. Once I restored to a pre-patch state, no problems.

FYI
by seanc217
Tue Aug 01, 2006 10:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiplication errors in PX?
Replies: 1
Views: 802

Multiplication errors in PX?

This one is strange... I am trying to do a calcualtion in a PX transformer. In the transformer I am applying the formula... (x/y) * z where x is a decimal 13,2 y is an integer and z is an integer The result variable is defined as 13,2 The numbers are x = 00000167037.66 y = 181 z = 181 The result sho...
by seanc217
Wed Jul 26, 2006 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Buildop
Replies: 1
Views: 1283

Dynamic Buildop

I am investigating ways to create libraries that can be re-used. I was wondering if there is anyway to make a build-op dynamic. That is can we pass it any columns in and process them? It looks like a custom stage is dynamic enough since it has a mapping tab. As long as you have a orchestrate operato...