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

Duplicate records can be copied in to separate file


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

New User


Joined: 07 May 2007
Posts: 7
Location: Bangalore

PostPosted: Fri Sep 19, 2008 10:11 pm
Reply with quote

Hi All ,

Can any one advise how the duplicate records can be copied in to separate file.

using DFSORT/ICETOOL ,

Thanks n adv.
Back to top
View user's profile Send private message
Skolusu

Senior Member


Joined: 07 Dec 2007
Posts: 2205
Location: San Jose

PostPosted: Fri Sep 19, 2008 10:33 pm
Reply with quote

ibmlearner,

The select operator of DFSORT can do that very easily

Code:

//STEP0100 EXEC PGM=ICETOOL                               
//TOOLMSG  DD SYSOUT=*                                   
//DFSMSG   DD SYSOUT=*                                   
//IN       DD *                                           
11111                                                     
11111 - REC2                                             
11111 - REC3                                             
22222                                                     
33333                                                     
33333 - REC2                                             
//OUT      DD SYSOUT=*                                   
//DUPS     DD SYSOUT=*                                   
//TOOLIN   DD *                                           
  SELECT FROM(IN) TO(OUT) ON(01,5,CH) FIRST DISCARD(DUPS)
/*


The out file will have

Code:

11111
22222
33333


The DUps file will have
Code:

11111 - REC2
11111 - REC3
33333 - REC2


If you want the unique keys in one file and all the duplicates in another file then use the following JCL

Code:

//STEP0100 EXEC PGM=ICETOOL                               
//TOOLMSG  DD SYSOUT=*                                     
//DFSMSG   DD SYSOUT=*                                     
//IN       DD *                                           
11111                                                     
11111 - REC2                                               
11111 - REC3                                               
22222                                                     
33333                                                     
33333 - REC2                                               
//OUT      DD SYSOUT=*                                     
//DUPS     DD SYSOUT=*                                     
//TOOLIN   DD *                                           
  SELECT FROM(IN) TO(OUT) ON(01,5,CH) NODUPS DISCARD(DUPS)
/*



The out file will have

Code:

22222


The DUps file will have
Code:

11111         
11111 - REC2 
11111 - REC3 
33333         
33333 - REC2 


For more options on select check this link

publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/ICE1CA20/6.11?DT=20060615185603

Hope this helps...

Cheers
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 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
Search our Forums:

Back to Top