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

how can i sort the records with name navneet


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

New User


Joined: 09 Oct 2005
Posts: 22
Location: INDIA

PostPosted: Fri Apr 21, 2006 8:52 am
Reply with quote

with sort utility how can i sort the records so that the first record is navneet and then rest other record any records

Can any one tell me what INREC and OUTREC does with some example and where do we use SORT utility in real time.

Thank u icon_cool.gif
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 Apr 21, 2006 8:51 pm
Reply with quote

Here's a DFSORT job that will do what you asked for. I assumed your "key" was in positions 1-10 and your input file has RECFM=FB and LRECL=80. You can change the job appropriately for other keys and attributes.

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD *
aaa
xxx
navneet
aaa
qqq
rrr
bbb
/*
//SORTOUT  DD SYSOUT=*
//SYSIN    DD    *
* Add 'A' for 'navneet' and 'B' for other records.
  INREC IFTHEN=(WHEN=INIT,OVERLAY=(81:C'B')),
        IFTHEN=(WHEN=(1,7,CH,EQ,C'navneet'),OVERLAY=(81:C'A'))
  OPTION EQUALS
* Sort on 'A'/'B' and then name.
  SORT FIELDS=(81,1,CH,A,1,10,CH,A)
* Remove 'A'/'B'.
  OUTREC BUILD=(1,80)
/*


SORTOUT has:

Code:

navneet   
aaa       
aaa       
bbb       
qqq       
rrr       
xxx   


Quote:
Can any one tell me what INREC and OUTREC does with some example and where do we use SORT utility in real time.


INREC reformats records before they are sorted, merged or copied. OUTREC reformats records after they are sorted, merged or copy.
You can use DFSORT for a wide variety of functions.

The best way for you to answer your own questions is to read through "z/OS DFSORT: Getting Started". It's an excellent tutorial, with lots of examples, that will show you how to use DFSORT, DFSORT's ICETOOL and DFSORT Symbols. You can access it online, along with all of the other DFSORT books, from:

Use [URL] BBCode for External Links
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 Compare 2 files and retrive records f... DFSORT/ICETOOL 2
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
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 Compare only first records of the fil... SYNCSORT 7
Search our Forums:

Back to Top