Search found 83 matches

by sravanthi
Wed Jul 02, 2008 12:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: check for file existence
Replies: 7
Views: 4073

check for file existence

Hi, I have sequencer where i have to check for file existence then proceed further.I have used execute command activity and used test -e in command and passed parameter #filename#.But the job is showing a warning message and job is not detecting the file. I have used return value =0 for file existen...
by sravanthi
Tue May 20, 2008 9:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: file transfer help
Replies: 5
Views: 2001

Fixed with implies no column delimiter at all. NUL occupies one byte. Therefore your proposed approach is not generically valid. Read each line as a single VarChar column and parse it within a Tr ... Ray, Let me explain: Sample data file looks like: HEADER 000000000000005 0105610095600ABX MANAGEMEN...
by sravanthi
Mon May 19, 2008 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cobol table definiton error for PIC 9(20).
Replies: 1
Views: 1336

Cobol table definiton error for PIC 9(20).

Hi,

We have a cobol file defintion with column having PIC 9(20).When i try to import this definiton it is showing an error:

PIC Numeric is too long (number of precision and scale is allowed up to 18)

Please advice!
by sravanthi
Mon May 19, 2008 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: file transfer help
Replies: 5
Views: 2001

Ray,

I have given col delim,quote char as NUL and Escape char as SPACE.

The data on remote server is now:
NHEADNNER NN 000000000000004

Instead of HEADER 000000000000004.
by sravanthi
Fri May 16, 2008 1:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: file transfer help
Replies: 5
Views: 2001

file transfer help

Hi, I have a file with header ,trailer and detail records.The header record length is 10 ,trailer record length is 15 and detail records are fixed width length of 50. I'm currently working on ftp stage to do this.I have tried reading the file as fixed width then on remote server the file is created ...
by sravanthi
Fri Jan 04, 2008 10:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to extract the XML Files to DS Eterprise editionPX 7.5x
Replies: 5
Views: 1707

dspxlearn ,

I have not used px jobs for reading xml.I was unable to find where can we mention input file name in xml input or xml transformer stages.Just curious to know..
by sravanthi
Thu Jan 03, 2008 3:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to extract the XML Files to DS Eterprise editionPX 7.5x
Replies: 5
Views: 1707

Re: How to extract the XML Files to DS Eterprise editionPX 7

deesh wrote:Previously ididnt work on XML Who knows the XML files in Enterprise Edition PX can you provide the suggestion
Use server job.Folder stage-->xml input file-->target.
by sravanthi
Mon Dec 17, 2007 12:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with double
Replies: 6
Views: 1458

Thankyou.

It is working now.I have used:

DataTypePicS9(Ebcdic(Lnk_Trns.DEDUCT_AMT))
by sravanthi
Mon Dec 17, 2007 12:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with double
Replies: 6
Views: 1458

Thankyou.

It is working now.I have used:

DataTypePicS9(Ebcdic(Lnk_Trns.DEDUCT_AMT))
by sravanthi
Mon Dec 17, 2007 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with double
Replies: 6
Views: 1458

Thanks for your advice.

Is there any possible way of converting COMP fileds to decimal or interger values.
by sravanthi
Mon Dec 17, 2007 11:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with double
Replies: 6
Views: 1458

Problem with double

Hi, I have a simple server job which loads data from file to database.The file is ftped from mainframe to windows server.The problem is the values for input double columns is coming as 0000000{0000000{0000000{0001000. The length of each field is 8.The job is getting failed because of } in the data. ...
by sravanthi
Thu Nov 08, 2007 1:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fixed width flat files
Replies: 5
Views: 2212

Re: fixed width flat files

Verify your metadata.It may be the problem.Also in the format tab add delimiter,final delimiter as none.
by sravanthi
Fri Nov 02, 2007 8:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with fixed width file
Replies: 4
Views: 2968

The column FIELD is declared as char(10).I have got the buffer overrun on several rows.

I have got table definition from database which send the data to Mainframe.I'm using the files ftped from Mainframe.


Please advice!

Thanks!
by sravanthi
Thu Nov 01, 2007 11:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with fixed width file
Replies: 4
Views: 2968

problem with fixed width file

Hi, I'm reading fixed width file.I used record length is Fixed and delimiter none.And Packed as no(overpunch). For all decimal fields i have mentioned field width by editing the row. I'm not able to view the whole data.Some of the records are getting rejected when i run the job. Sample of the data i...
by sravanthi
Wed Oct 17, 2007 10:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mutliple line data into single line
Replies: 5
Views: 1531

Ray,

I have modified my code to CONVERT(char(012),char(032),trim(field name)) instead of CONVERT(char(010),char(032),trim(field name))

And now it is displaying in a single row.

Thanks!