Search found 42 matches

by ArunaDas_Maharana
Mon Mar 14, 2011 6:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating EDI cobol multi level format
Replies: 0
Views: 2070

creating EDI cobol multi level format

Hi, We are having a requirement to create a Adapter for performing folwoing task: 1. Read the receipts XML records from MQ. 2. Translate the XML fields into Cobol Copy Book format (EDI multi level format). 3. Write the output into the EDI MQ, I xml per (EDI multi level record) . The challenges we ar...
by ArunaDas_Maharana
Tue Feb 01, 2011 8:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: which one is more costly
Replies: 4
Views: 2218

Thanks chulett

I will try the two options folder and external stage..
by ArunaDas_Maharana
Fri Jan 28, 2011 8:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: which one is more costly
Replies: 4
Views: 2218

Yes you are correct! parsing directly while reading from the database won't give this issue From the database the xmls are landed in the sequential file I found one more option where if you validate your xml with schema then it will strip off the CRLF from the sequential file. I can't change change ...
by ArunaDas_Maharana
Fri Jan 28, 2011 2:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: which one is more costly
Replies: 4
Views: 2218

which one is more costly

hi All, I am getting xmls from my souce with CRLF characters after each tag, while parsing with xml input it fails. As a wor around i added Erepacle for search and strip off CRLF in the datastage transformer after my ORAOC19 stage in the server job , the message are stored as clob. Another way i tri...
by ArunaDas_Maharana
Fri Jan 14, 2011 2:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Design suggestion
Replies: 2
Views: 2211

XML Design suggestion

hi, My source and target is xml, i need to do some translation and transformation to this input xml. earlier i had only translation so i was not parsing my xml achiveing it with xslt. Now i need to look up database to fech some value. Problem is i have repeating elements at same level. Please sugges...
by ArunaDas_Maharana
Thu Nov 18, 2010 11:28 pm
Forum: General
Topic: How to pass a variable date as a parameter in dsjob
Replies: 11
Views: 6155

In that case your master job would have a polling mechanism for triggering and it might be looping through list of jobs in csv files, after reading your .ini file. update your .ini file with startdate parameter and csv with your job 1st creating startdate file then your select job. Here you just nee...
by ArunaDas_Maharana
Thu Nov 18, 2010 6:45 am
Forum: General
Topic: How to pass a variable date as a parameter in dsjob
Replies: 11
Views: 6155

Sorry... :oops: completely missed your note Note : we are not using Sequencer Jobs Could you pls share some more info about your master job is this a parallel job/server basic job which reads your param file and csv file of job names to call the jobs in sequence. Please elaborate on your master cont...
by ArunaDas_Maharana
Thu Nov 18, 2010 5:31 am
Forum: General
Topic: How to pass a variable date as a parameter in dsjob
Replies: 11
Views: 6155

is ur control job a sequencer job which controls the flow of the jobs

if yes while configuring job activity the sequencer will over right the value of the job called.
by ArunaDas_Maharana
Thu Nov 18, 2010 5:15 am
Forum: General
Topic: How to pass a variable date as a parameter in dsjob
Replies: 11
Views: 6155

the way i understood your design is : 1st job creating a sequencial file with subquery to get the date field (which you are reading through unix command) 2nd job actual extract query Now, if these two jobs are in different sequencer job is easy just map your jobparameter while calling your dsjob -pa...
by ArunaDas_Maharana
Thu Nov 18, 2010 5:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to assign a default value to a generated column ?
Replies: 4
Views: 12316

pls use the information provided in the designer while configuring column generater under colum to generate Name of column to be added to row by the generator. To control the way random data is generated, open up the column editor for the output column and select Parallel Generator properties. go to...
by ArunaDas_Maharana
Fri Apr 30, 2010 7:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: selecting column as null from oracle
Replies: 9
Views: 7417

I have 15 columns all defined with datatype & length.

You can produce this error by selecting null as column, although datatype(length) is defined.

Thanks,
Aruna
by ArunaDas_Maharana
Fri Apr 30, 2010 2:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: selecting column as null from oracle
Replies: 9
Views: 7417

i had never specified varchar(0), it was always varchar(10), i said i was sorry i missed to share this info in this forum. In datastage it was always there Ray :)
by ArunaDas_Maharana
Fri Apr 30, 2010 2:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: selecting column as null from oracle
Replies: 9
Views: 7417

i will go with the suggestion provided CAST(null AS VarChar2(10)) cr_code and with below theory not sure though that it's fully correct! oracle nulls can be identified where as for datastage null should be converted to a form or metadata datastage is aware off hence it worked once null is explicitly...
by ArunaDas_Maharana
Thu Apr 29, 2010 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: selecting column as null from oracle
Replies: 9
Views: 7417

sorry to miss the length it's 10.
by ArunaDas_Maharana
Thu Apr 29, 2010 3:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: selecting column as null from oracle
Replies: 9
Views: 7417

selecting column as null from oracle

hi, I want to select some of my columns as null from the database oracle like select t1.fd_id, t2.px_number, null cr_code, null pt_code from table1 t1, table2 t2 this query works fine in sqlplus and sqldeveloper where as in datastage it giving following error db_Tx_data: Error when checking operator...