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

How to find out the duplicate records in two files?


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

New User


Joined: 28 Nov 2005
Posts: 3

PostPosted: Mon Nov 28, 2005 12:34 pm
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
k_vikram07

New User


Joined: 23 Nov 2005
Posts: 35

PostPosted: Mon Nov 28, 2005 2:36 pm
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
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

Senior Member


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

PostPosted: Mon Nov 28, 2005 3:33 pm
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
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
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 Duplicate transid's declared using CEDA CICS 3
No new posts Write line by line from two files DFSORT/ICETOOL 7
No new posts Compare only first records of the fil... SYNCSORT 7
Search our Forums:

Back to Top