IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

REPLACING COMMA(,) IN INPUT FILE WITH A STRING


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
JayaprakashT

New User


Joined: 05 Oct 2007
Posts: 3
Location: Hyderabad

PostPosted: Thu Apr 07, 2011 5:20 pm
Reply with quote

Input file contains a query which looks like SELECT EMPID, EMPNAME, DEPNO FROM TABLE A WHERE EMPID = 100;

Output file should be a re-formatted query like SELECT CAST(EMPID AS VARCHAR(200)),',', CAST(EMPNAME AS VARCHAR(200),',', CAST(DEPNO AS VARCHAR(200) FROM TABLE A WHERE EMPID = 100;

Note: No of columns might vary based on the query.
Back to top
View user's profile Send private message
Escapa

Senior Member


Joined: 16 Feb 2007
Posts: 1399
Location: IL, USA

PostPosted: Thu Apr 07, 2011 5:24 pm
Reply with quote

Please help me understand your problem..

You have query written in input file, you want to replace all , with ,',', ?

Is that correct?
Back to top
View user's profile Send private message
JayaprakashT

New User


Joined: 05 Oct 2007
Posts: 3
Location: Hyderabad

PostPosted: Thu Apr 07, 2011 5:40 pm
Reply with quote

Dear Escapa,

Yes, I have a query written in input file. I need to format each column of input file like
input file-Column Output file-column
EMPID CAST(EMPID AS VARCHAR(200)),',',
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Thu Apr 07, 2011 6:05 pm
Reply with quote

So, seperate into words between SELECT and FROM, then "wrap" your words up with what you want. Stick it all back together. Many particular ways to do this. See what you think.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts TRIM everything from input, output co... DFSORT/ICETOOL 1
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Replacing 'YYMMDD' with date, varying... SYNCSORT 3
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
Search our Forums:

Back to Top