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
 
Duplicate records can be copied in to separate file

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

New User


Joined: 07 May 2007
Posts: 1
Location: chennai

PostPosted: Fri Sep 19, 2008 10:11 pm    Post subject: Duplicate records can be copied in to separate file
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
References
Skolusu

DFSORT Developer


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

PostPosted: Fri Sep 19, 2008 10:33 pm    Post subject:
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

http://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
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