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

Help needed regarding one JCL sort


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
shreyashighosh

New User


Joined: 02 Dec 2005
Posts: 5
Location: India

PostPosted: Fri Dec 02, 2005 2:09 pm
Reply with quote

Input file1:

Code:

Zip             State              Abbreviated
Cd              Cd                 City name
_____           _______            __________

103             9                  JP
126             22                 AD
126             30                 AD
249             1                  ND
313             17                 NP


Input File2:

Code:

Zip Cd          State Cd                City name
_____           _______                 _________

103             9                       Jaipur
126             22                      Allahabad
126             30                      Ahmedabad
249             1                       New Delhi
313             17                      Nagpur


Required output file:

Code:

Zip     State     City             Abbreviated
Cd      Cd        Name             City Name
_____   _______   _________        __________

103     9         Jaipur           JP
126     22        Allahabad        AD
126     30        Ahmedabad        AD
249     1         New Delhi        ND
313     17        Nagpur           NP
Back to top
View user's profile Send private message
priyesh.agrawal

Senior Member


Joined: 28 Mar 2005
Posts: 1448
Location: Chicago, IL

PostPosted: Fri Dec 02, 2005 4:08 pm
Reply with quote

http://www.ibm.com/servers/storage/support/software/sort/mvs/tricks/srtmst02.html#t3a

Regards,

Priyesh.
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: Fri Dec 02, 2005 9:59 pm
Reply with quote

You can use a DFSORT/ICETOOL job like this to do what you asked for:

Code:

//S1    EXEC  PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//CON DD *    input file1
103             9                  JP
126             22                 AD
126             30                 AD
249             1                  ND
313             17                 NP
//    DD *    input file2
103             9                       Jaipur
126             22                      Allahabad
126             30                      Ahmedabad
249             1                       New Delhi
313             17                      Nagpur
/*
//OUT DD SYSOUT=*
//TOOLIN DD *
SPLICE FROM(CON) TO(OUT) ON(1,5,CH) ON(17,7,CH) -
  WITH(41,9) USING(CTL1)
/*
//CTL1CNTL DD *
  OUTFIL FNAMES=OUT,
    OUTREC=(1,5,9:17,7,19:41,9,36:36,2)
/*
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 -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
No new posts how to calculate SUM value for VB fil... DFSORT/ICETOOL 1
Search our Forums:

Back to Top