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

Extract first name and last name from input file


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
gaps030980

New User


Joined: 27 Sep 2005
Posts: 8
Location: Gurgaon

PostPosted: Wed Nov 26, 2008 2:26 am
Reply with quote

I have an input file having first name a space followed by the last name. The max combined length is 20 char. I need to pull up the first name and store it separately to a 2nd file and extract the last name and store it separately to a 3rd file. How do I do that using a JCL/SORT?
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Wed Nov 26, 2008 2:30 am
Reply with quote

Can you post here the sort product info.(DFSORT/Syncsort) with the version nbr. See the SYSOUT of any job run to find this info.
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Wed Nov 26, 2008 2:40 am
Reply with quote

Kushal,

You can use a DFSORT job like the following to do what you asked for.

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD *
ALFRED SMITH
WILLIAM JONES
JOE PLUMBER
GEORGE WASHINGTON
/*
//OUT1 DD SYSOUT=*
//OUT2 DD SYSOUT=*
//SYSIN    DD    *
  OPTION COPY
  OUTFIL FNAMES=OUT1,
    PARSE=(%01=(ENDBEFR=C' ',FIXLEN=20)),
    BUILD=(%01)
  OUTFIL FNAMES=OUT2,
    PARSE=(%=(ENDBEFR=C' '),
           %02=(FIXLEN=20)),
    BUILD=(%02)
/*


OUT1 would have:

Code:

ALFRED   
WILLIAM   
JOE       
GEORGE   


OUT2 would have:

Code:

SMITH       
JONES       
PLUMBER     
WASHINGTON 


For complete details of DFSORT's PARSE function, see:

www.ibm.com/systems/support/storage/software/sort/mvs/peug/
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
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 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