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

Write a blank output record at a change of key


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

New User


Joined: 20 Jan 2010
Posts: 5
Location: UK

PostPosted: Fri Feb 05, 2010 2:06 pm
Reply with quote

Hi,

I have the following input data:

James Smith 111111
Neil Smith 111111
Nigel Jonesa 222222
Nigel Jonesa 222222
Nigel Jonesb 222222
Richard Jones 333333

and would like to output a blank line at a change of key, so the data looks like this:

James Smith 111111
Neil Smith 111111

Nigel Jonesa 222222
Nigel Jonesa 222222
Nigel Jonesb 222222

Richard Jones 333333

Can anyone help please?
Back to top
View user's profile Send private message
Escapa

Senior Member


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

PostPosted: Fri Feb 05, 2010 2:39 pm
Reply with quote

Below SORT step will give you required result...
Code:

//STEP10   EXEC PGM=SORT                         
//SORTIN       DD *                             
JAMES SMITH   111111                             
NEIL SMITH    111111                             
NIGEL JONESA  222222                             
NIGEL JONESA  222222                             
NIGEL JONESB  222222                             
RICHARD JONES 333333                             
/*                                               
//SORTOUT DD SYSOUT=*                           
//SYSOUT  DD SYSOUT=*                           
//SYSIN    DD  *                                 
  SORT FIELDS=(15,6,ZD,A)                       
  OUTFIL REMOVECC,SECTIONS=(15,6,TRAILER3=(80:X))
/*                                               
Back to top
View user's profile Send private message
NeilDev

New User


Joined: 20 Jan 2010
Posts: 5
Location: UK

PostPosted: Fri Feb 05, 2010 2:50 pm
Reply with quote

Thankyou very much.
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 Feb 05, 2010 11:26 pm
Reply with quote

Here's a more general way to do this that doesn't require knowing the LRECL of the records:

Code:

  SORT FIELDS=(15,6,ZD,A)                     
  OUTFIL REMOVECC,SECTIONS=(15,6,SKIP=1L)     


Note that if the records are already in sorted order, it would be more efficient to use COPY rather than SORT.
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 Binary File format getting change whi... All Other Mainframe Topics 7
No new posts How to turn off 'ACTION' SDSF output ... TSO/ISPF 2
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts TRIM everything from input, output co... DFSORT/ICETOOL 1
No new posts How to split large record length file... DFSORT/ICETOOL 10
Search our Forums:

Back to Top