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 to find out the duplicate records in two files?

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

New User


Joined: 28 Nov 2005
Posts: 3

PostPosted: Mon Nov 28, 2005 12:34 pm    Post subject: How to find out the duplicate records in two files?
Reply with quote

Now, there are two qsam files with the same layout, I need to find out the duplicate records from the two files, could someone give me a sample?
It's highly appreciated.
Back to top
View user's profile Send private message
References
k_vikram07

New User


Joined: 23 Nov 2005
Posts: 34

PostPosted: Mon Nov 28, 2005 2:36 pm    Post subject:
Reply with quote

//sortin dd dsn=qsam1,disp=shr
// dd dsn=qsam2,disp=shr
//sortout dd dsn=temp,disp=(,catlg)
....
//sortxsum dd dsn=dups,disp=(,catlg)
//sysin dd *
sort fields=(your key def for finding duplicate)
sum fields=none,xsum
/*

This works if u use syncsort and want to find all duplicates of both files.

thanks
vik.
Back to top
View user's profile Send private message
eric

New User


Joined: 28 Nov 2005
Posts: 3

PostPosted: Mon Nov 28, 2005 2:56 pm    Post subject:
Reply with quote

Vik,

Thanks for your help, however I haven't used the 'syncsort' and can't ensure the 'syncsort' is available in my environment, could you give me
a example for 'SORT'? That would be very appreciated.

Thanks
Eric
Back to top
View user's profile Send private message
priyesh.agrawal

Global Moderator


Joined: 28 Mar 2005
Posts: 1509
Location: Chicago, IL

PostPosted: Mon Nov 28, 2005 3:33 pm    Post subject: Re: How to find out the duplicate records in two files?
Reply with quote

For DFSORT...

Code:
//SORT     EXEC PGM=ICETOOL                   
//TOOLMSG   DD SYSOUT=*                       
//DFSMSG    DD SYSOUT=*                       
//IN     DD DSN=RECORDS.INPUT,DISP=SHR
//OUT    DD DSN=RECORDS.OUT,     
//          DISP=(,KEEP,DELETE)             
//TOOLIN DD *                                 
  SELECT FROM(IN) TO(OUT) ON(1,L,CH) ALLDUPS 
//


*L= Record Length.

Regards,

Priyesh.
Back to top
View user's profile Send private message
eric

New User


Joined: 28 Nov 2005
Posts: 3

PostPosted: Mon Nov 28, 2005 3:47 pm    Post subject:
Reply with quote

thanks a lot, I will give it a try! icon_biggrin.gif
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