Search found 27 matches

by say2prabhu1
Mon Feb 22, 2010 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer stage function
Replies: 9
Views: 4028

1) Read each row as single char using varchar (Seq file Stage) 2) Use following function to read columns (Transformer stage) Field(Row1,"|", 1) Field(Row1,"|", 2) . . . Field(Row1,"|", 20) You will get expected result .. The above logic will applicable only for fixed co...
by say2prabhu1
Tue Jan 27, 2009 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OCI Stage - Issue with reading decimal values
Replies: 11
Views: 4944

Use cast function while reading the oracle decimal values..

For example , Table T1 has column A has decimal datatype (12,3) means

Try to read the above A column value as VARCHAR usinf cast function

Select (cast ( a as Varchar(15)) A
from T1(Table)

This wll help you out ..
by say2prabhu1
Wed Dec 10, 2008 7:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Stage rejects records
Replies: 7
Views: 3746

Just check with single records alone ... If it suceed ,check with 10 records..
There may be possibility of constraint violation ...

Put a reject file from the DB in datastage and capture ...

Check all the columns thoroughly..
by say2prabhu1
Mon Oct 27, 2008 12:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Capture SQL Error Codes when loading is failed
Replies: 2
Views: 1566

In the Oracle DB target stage,you have to enable output reject records to be true and take a link from that stage and capture it in sequential file..

The design should be
Seq file(source file) ------> Transforer ............> Oracle Table --->Sequential file (Rejected reords )
by say2prabhu1
Thu Oct 16, 2008 12:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error
Replies: 2
Views: 1629

Open the previous stage and change the preserve partitioning setting to clear..

Open the stage tab in that stage(sort,file,lkup etc).Go to adavnced tab and change the Default(clear) to clear before processing to the next stage(Insert_DMT_TACTICS_FT)....
by say2prabhu1
Thu Jun 05, 2008 5:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to insert unix new line in between the single records?
Replies: 1
Views: 1454

How to insert unix new line in between the single records?

Each record having length of 1800.. While I am loading into the file ,I need to split these records into three.. Basically I need to insert unix new line after 600 length.. the second and third records 600 column defintion(column length) is different.. How can i load the single record into three row...
by say2prabhu1
Thu Jan 31, 2008 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator and run time propagation
Replies: 1
Views: 1632

Aggregator and run time propagation

I have some doubts on using run time column propagation in Aggregator stage.For example i am reading the data from file and loading into the sequential file through transformer and aggregator stage. If i am using run time column propagation option in other processing stage ,it will work. My curiosit...
by say2prabhu1
Mon Jan 14, 2008 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sparse look-up doubt
Replies: 4
Views: 2721

the issues are resolved.. first we asked DBA to increase the size of the table.. then we loaded the records into the table.. we created the index on the table.. This took less amount of time (App 2 hours).. Before that we created index on the table and tried inserting the records (290 million) into ...
by say2prabhu1
Tue Jan 08, 2008 12:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sparse look-up doubt
Replies: 4
Views: 2721

Sparse look-up doubt

there is some 290 million records in temp table. There is no primary key and index on this table.Right now i am using this table as look up. I used this table as sparse look-up in ETL job,but the datastage job is still running(More than 15 hours).. One of my friend is telling this is because of the ...
by say2prabhu1
Thu Jan 03, 2008 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle many records in datasets?
Replies: 3
Views: 1867

any suggestion??

Please post your comments on this..
by say2prabhu1
Thu Jan 03, 2008 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle many records in datasets?
Replies: 3
Views: 1867

How to handle many records in datasets?

I am extracting data from two views based on key column values. The thing is both of the views having more than 100 million records.I am joining the view based on some key columns which is producing some million records. The source is oracle table(40000 records) and i am pulling the records from the...
by say2prabhu1
Mon Dec 17, 2007 5:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to load into a Table from a dataset.............
Replies: 8
Views: 3042

i was also faced the similar issue.. I didn't noticed the records got rejected while loading into the oracle table due to mismatched datatype between source and target..

1)Put reject file at the oracle stage.
2)Check the datatypes between source and target.
by say2prabhu1
Tue Nov 27, 2007 12:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compiling all jobs
Replies: 10
Views: 3747

1) Open manager
2) Tools and Run multiple job compile :twisted:
3) select jobs (like server,parallel,sequencer)
4) manual page selection
5) select whatever the jobs you want to compile

:wink:
by say2prabhu1
Tue Nov 27, 2007 12:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: some look up issue
Replies: 4
Views: 1989

What is your exact requirement?
Do you want extract the records from the table? Give us your business requirement
by say2prabhu1
Mon Nov 26, 2007 6:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Catch the last record in Stage Variable
Replies: 5
Views: 3343

based on our business requirement we need to process the data like remove duplicates,sort etc.. I am considered the incoming records are not duplicates..