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
 
Write a blank output record at a change of key

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

New User


Joined: 20 Jan 2010
Posts: 5
Location: UK

PostPosted: Fri Feb 05, 2010 2:06 pm    Post subject: Write a blank output record at a change of key
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
References
Sambhaji

Active Member


Joined: 16 Feb 2007
Posts: 808
Location: Pune, India

PostPosted: Fri Feb 05, 2010 2:39 pm    Post subject:
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    Post subject: Reply to: Write a blank output record at a change of key
Reply with quote

Thankyou very much.
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Moderator


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

PostPosted: Fri Feb 05, 2010 11:26 pm    Post subject:
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
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