Search found 115 matches

by gsym
Tue Apr 07, 2009 12:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Check Error
Replies: 0
Views: 849

Date Check Error

Hey, Thanks in advance for the response My input is of format 971226 and I add 19000000 and convert to date using stringtodate function. But I get some invalid dates of format 112226 which results in 1911-22-26 where 22 is invalid month. Thus I see conversion error in director log and fatal error wh...
by gsym
Mon Mar 16, 2009 2:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Efficient Way to remove Duplicates and store them
Replies: 5
Views: 1678

hey Ray, Thnaks for the response. Sometime, when I use fork-join, the job just runs for long time. I mean it never finishes. But I think I can implement it in 2 step process by temporary storage in Dataset. But still I would require aggrerator and a Filter/Transformer to implement this. When the vol...
by gsym
Fri Mar 13, 2009 11:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Efficient Way to remove Duplicates and store them
Replies: 5
Views: 1678

Efficient Way to remove Duplicates and store them

Hi,

Can Anyone let me know the most eficient way to remove duplicates and store them.....

I can acheive this by using a transfromer and use a stage variabe or use sort and key change column.

Transformer becomes sequential and Sorting takes long time....

Is there any other way?
by gsym
Tue Mar 10, 2009 11:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load Issuse, Data loaded with trailing spaces
Replies: 4
Views: 1265

I already tried that and still it dosent work.

The reason I set tht to true was, when we use SQL LOAD option via datastage, it treats " " as Null and it dosent get loaded into the non nullable column. But when I set this ENV varibale, it works fine.

Also When I use Insert, it dosent get loaded with trailing spaces
by gsym
Tue Mar 10, 2009 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load Issuse, Data loaded with trailing spaces
Replies: 4
Views: 1265

Oracle Load Issuse, Data loaded with trailing spaces

Hey, I am using LOAD option in oracle enterprise stage. When i load data into the VARCHAR Field, the data is getting loaded with spaces. Example Assume the job as follows Oracle -----> Transformer------->Oracle In transformer i am defaulting a value 'SM' for a column of datatype Varchar (5). when i ...
by gsym
Mon Feb 23, 2009 9:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController,1: [DataDirect][ODBC Oracle W
Replies: 1
Views: 1456

first thing is disable operator Combinability to see the full log. is the column in Oracle is represented as just number or of type number(2,4) ?
by gsym
Mon Feb 23, 2009 5:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load Characteristic
Replies: 2
Views: 1018

Oracle Load Characteristic

Hey, I am using LOAD option in oracle enterprise stage. When i load onto the VARCHAR Field, the data is getting loaded with spaces. Example Assume the job as follows Oracle -----> Transformer------->Oracle In transformer i am defaulting a value 'SM' for column "Code" of datatype Varchar (5...
by gsym
Mon Feb 23, 2009 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage Load Error
Replies: 3
Views: 2950

Thanks Ray & fmcmullan

I tried to get in touch with DBA, still waiting for response. Right now running it in sequential.

Jus to update you fmcmullan, My index mode is rebuild and i am using partition table.
by gsym
Thu Feb 19, 2009 7:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage Load Error
Replies: 3
Views: 2950

Oracle Enterprise Stage Load Error

Hii , Can you guys guide me thru this error Oracle_Enterprise_154,0: Oracle call failed; sqlcode = -12801; message: ORA-12801: error signaled in parallel query server P028 ORA-00604: error occurred at recursive SQL level 2 ORA-00018: maximum number of sessions exceeded When I run the same job in seq...
by gsym
Tue Feb 17, 2009 10:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: equivalent function for oracle "months_between" fu
Replies: 2
Views: 1542

Thanks Ray

Thanks for the response Ray. After enrichment, Used a temp table to perform such functions.
by gsym
Mon Feb 16, 2009 5:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: equivalent function for oracle "months_between" fu
Replies: 2
Views: 1542

equivalent function for oracle "months_between" fu

hey,

Is there a datastage euivalent function for oracle months_between function?

Thanks
by gsym
Mon Feb 09, 2009 7:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversion
Replies: 3
Views: 1266

Used functions to resolve this

hey, thaks ray. I used functions to resolve this. actualy stripped first two character and passed back 20 or 19 depending on the cc code and concatinated with rest of the 5 digit code. So its changed from CCYYDDD to YYYYDDD which i sent via stringtodate to resolve
by gsym
Mon Feb 09, 2009 12:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversion
Replies: 3
Views: 1266

Date conversion

Hi guys, The source data is coming in from mainframe and when i import the CFD, the columns are in decimal and of format "0207354", "0197356". When I decoded this, the first 2 character represents the century which is if 02 , then 2007 or if 01 then 1900 . the next 2 characters r...