Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
how can i sort the records with name navneet

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL
Author Message
navneet.dewangan

New User


Joined: 09 Oct 2005
Posts: 20
Location: INDIA

PostPosted: Fri Apr 21, 2006 8:52 am    Post subject: how can i sort the records with name navneet
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
References
Frank Yaeger

DFSORT Moderator


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

PostPosted: Fri Apr 21, 2006 8:51 pm    Post subject:
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:

www.ibm.com/servers/storage/support/software/sort/mvs/srtmpub.html
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL All times are GMT + 6 Hours
Page 1 of 1