Search found 394 matches

by samsuf2002
Wed Jan 14, 2009 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle stage performance
Replies: 2
Views: 725

Thanks for your reply DSguru2B.

I will try the steps you showed me and my job design is just an oracle stage followed by data set. I am using auto partitioning on data set.
by samsuf2002
Wed Jan 14, 2009 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle stage performance
Replies: 2
Views: 725

Oracle stage performance

Hi, My job loads data from Oracle stage into a data set, there are around 6 columns and 200K records. We are doing some inner joins in Oracle stage itself, job takes around 2 hrs to finish on 8 nodes. My question is what will be the best way to increase the performance of the job ? Is writing a join...
by samsuf2002
Wed Jan 07, 2009 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: not able to view data from a sequentail file
Replies: 18
Views: 10923

Make sure the format you specified in sequential file stage is same as actual file, example the format , delimeter etc.
by samsuf2002
Tue Jan 06, 2009 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stored procedure stage
Replies: 3
Views: 1267

Do I need a patch to fix this ?
by samsuf2002
Tue Jan 06, 2009 12:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stored procedure stage
Replies: 3
Views: 1267

stored procedure stage

Hi , I am using a stored procedure stage in my PX job for oracle db, i want to specify environmental variable for the data source and data base fields. I gave $dbname for database field its working fine but when I use $dbsource for data source field its aborting with this error "Error: ORA-1215...
by samsuf2002
Sat Sep 27, 2008 4:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Special character Handling
Replies: 4
Views: 8181

What is your target ?, if it is a file then you can pass it through another transformer and put a constraint to capture ?s for that column and reject it.
by samsuf2002
Fri May 30, 2008 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: splitting records into multiple files
Replies: 1
Views: 1102

splitting records into multiple files

Hi , I have a requirement to split my data into multiple files each containing 100K records, now I have my input row count 4 million which need to be split into 40 files. What could be the easy way to do it ,right now I am just using link partitioner....is it efficient for just one time load. thanks...
by samsuf2002
Mon May 19, 2008 10:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating hashed file takes too long
Replies: 11
Views: 5077

I replaced output hashed file with sequential file in the job design i showed above , the job took 20 mins to load all 10 million in the output seq file. Later i am using another job to load seq file into hash file and its very slow like 600 row/sec.
by samsuf2002
Mon May 19, 2008 9:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating hashed file takes too long
Replies: 11
Views: 5077

Chulett I am using stage variables in transformer instead of pivot stage for doing vertical pivot ....my job design will be

Code: Select all

Seq file --- link partitioner----4 streams of trnfrm ----- link collector ----- hashed file
by samsuf2002
Mon May 19, 2008 9:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating hashed file takes too long
Replies: 11
Views: 5077

Creating hashed file takes too long

Hi All , I am running job which does vertical pivot creating 150 columns in output hashed file, I have 10 million rows in input seq file . The job takes 11 hrs to create the hash file ....i am using link patitioner and link collector but it is not helping ....can any one please suggest me how can I ...
by samsuf2002
Wed May 14, 2008 1:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical pivot
Replies: 15
Views: 6873

I can mark it as resolved then. Thanks to all.
by samsuf2002
Wed May 14, 2008 12:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical pivot
Replies: 15
Views: 6873

Thanks to all, its working fine....i used the idea given by Rajee by holding code values in one stage variable and then using Field() to split the values in different output columns (in my case it will be 20 output columns)...... Now my concern is whether its worth using hashed file because my data ...
by samsuf2002
Tue May 13, 2008 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical pivot
Replies: 15
Views: 6873

No Chulett maximum number of pivoted columns can be more upto 20.
by samsuf2002
Tue May 13, 2008 2:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical pivot
Replies: 15
Views: 6873

Input id ---

Code: Select all

Key_col Code_col
123       100
123       200
123       300
345       500
345       600
345       700
345       800
Output should be --

Code: Select all

Key_col Code_col1 Code_col2 Code_col3 Code_col4
123        100       200       300      
345        500       600       700       800 
[/list]
by samsuf2002
Tue May 13, 2008 12:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical pivot
Replies: 15
Views: 6873

Nivas- I did as you said and as i found in some of the helpful posts but now my output looks like key col A and B col having values X,Y,Z,W ....but my requirement is to get X,Y,Z,W in 4 different columns...