Search found 110 matches

by umamahes
Tue Apr 03, 2007 12:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rangelookup
Replies: 8
Views: 2990

Rangelookup

HI, I have a requrement like i need to do range lookup. Here i have my input file 123,167,7362,245,SDCCAT,3456,150,MED,MIB,H,ABCD,XYZ,JKH,VI 123,167,7362,245,SDCCAT,3456,150,MID,MIB,H,ABCD,XYZ,JKH,VI LookupFIle:(ONE RECORD) 123,%,NOT50,(200-300),SDC%,3456,(100-50),MED,MIB,H,ABCD,XYZ,JKH,VI,MEDICARE ...
by umamahes
Mon Mar 26, 2007 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare Stage
Replies: 10
Views: 4354

HI,

Use a schema file (RCP) and specify a key column in the compare stage which you want to do comparision.It should work.

Thanks
Uma
by umamahes
Wed Mar 21, 2007 8:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using API functions in parallel rouitne
Replies: 6
Views: 2923

HI

How can i give the path in the c++ code.

can you please give me an example with the code i have posted

Thaks
Uma
by umamahes
Wed Mar 21, 2007 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using API functions in parallel rouitne
Replies: 6
Views: 2923

Using API functions in parallel rouitne

HI, can any one help me how to write a c++ routine using api functions in parallel job.i wrote the code like below #include <dsapi.h> DSPROJECT DSOpenProject( char *ProjectName ); DSJOB DSOpenJob( DSPROJECT ProjectHandle, char *JobName ); int DSGetJobInfo( DSJOB JobHandle, int InfoType, DSJOBINFO *R...
by umamahes
Tue Mar 20, 2007 11:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Runtime Column propagation
Replies: 2
Views: 1134

Problem with Runtime Column propagation

Hi, i am using schema file to define metadata.when i use schema file no column definitions are present in the transformer.for straight passing the data it is working fine.if i want to apply some logic like trimming,testing for null values like that how can i do that in transformer because no meta da...
by umamahes
Wed Mar 07, 2007 8:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Promblem compiling parallel transformer
Replies: 3
Views: 1240

Promblem compiling parallel transformer

HI, I am getting following error when i compiled parallel job with transformer.other than transformer all other stages are working fine. here is the error ##I TFCN 000001 18:28:27(000) <main_program> Ascential DataStage(tm) Enterprise Edition 7.5 Copyright (c) 2004, 1997-2004 Ascential Software Corp...
by umamahes
Wed Feb 28, 2007 1:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with ascential pack for oracle apps
Replies: 3
Views: 1006

Hi

I installed Ascential pack for oracle applications

Thanks
Uma
by umamahes
Wed Feb 28, 2007 12:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with ascential pack for oracle apps
Replies: 3
Views: 1006

problem with ascential pack for oracle apps

Hi,

I installed ascential pack for oracle apps and is working fine in server job.when i tried to use this stage in parallel job it is giving the following message

(40906) unable to create the new object

Please any one help me to come out from this issue
Thanks
uma
by umamahes
Mon Feb 26, 2007 11:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting comp3 value into integer
Replies: 5
Views: 1572

I dont know what are the equivalent functions in c++ for these basic functions OCONV(Arg1,'MB0C') and ICONV(InString[Nibble,4],'MB')

Thanks
Uma
by umamahes
Mon Feb 26, 2007 9:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting comp3 value into integer
Replies: 5
Views: 1572

Converting comp3 value into integer

Hi,

I have a requirement to convertcobol comp-3 signed packed decimal into an integer.In server job we have a routine to do this.is any one know c++ code to convert comp-3 signed packed decimal into an integer.

Thanks
Uma
by umamahes
Fri Feb 23, 2007 1:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Isnull problem
Replies: 4
Views: 3656

Isnull problem

I am using Isnull function in a transformer to check whether it is a null or not. Isnull(DOB_LOAD_KEY):Stagevar when i compile the job i am getting the following compilation error. If i remove this condition job is compiling successfully and is working fine. Output from transformer compilation follo...
by umamahes
Thu Feb 22, 2007 5:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with oracle stage
Replies: 8
Views: 2106

i have 199 records from the input file and 199 records from the table with zipcode and zip_code_key.so i am doing look up against zipcode if zip code is not present in the table i need that not found record only. In the input file only one record has no match in the table.so i am expecting one recor...
by umamahes
Thu Feb 22, 2007 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with oracle stage
Replies: 8
Views: 2106

my user defined query is below SELECT DIM_ZIP_CODE.ZIP_CODE_KEY,DIM_ZIP_CODE.ZIP_CODE FROM perform_owner.DIM_ZIP_CODE WHERE rownum < 200 after this when i view the data it is showing the data .when i run the job it is aborting and is giving this fatal message DIM_ZIP1..Oracle_OCI_19: ORA-01036: ille...
by umamahes
Thu Feb 22, 2007 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with oracle stage
Replies: 8
Views: 2106

when i use colukmn generated or user defined sql it is working fine.but one thins i do not understand this where clause WHERE DIM_ZIP_CODE.ZIP_CODE=:1 why it is generating even if i dont give any thing SELECT DIM_ZIP_CODE.ZIP_CODE_KEY,DIM_ZIP_CODE.ZIP_CODE FROM perform_owner.DIM_ZIP_CODE WHERE DIM_Z...
by umamahes
Thu Feb 22, 2007 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with oracle stage
Replies: 8
Views: 2106

Problem with oracle stage

I am using sequential file as input file and oracle oci stage as reference table and i am doing lookup in a transformer in server job. It is not working it is giving the following error. DIM_ZIP1..Oracle_OCI_8_15: ORA-01036: illegal variable name/number After that i wrote all the records from the ta...