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

DFSORT Remove the dupilcate records from the file


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

New User


Joined: 19 Aug 2005
Posts: 1

PostPosted: Wed Jun 07, 2006 4:57 pm
Reply with quote

i Have a file having millions of records!!!I have to remove the dupilcate records from the file

Input file has follwing reocrds
100001
100001
100045
121231
343412
453455
435345
111111
111111
222222
222222

2 output files should be created

first file : Remove the dupilcate reocrds(2 reocrds each)
100001
100001
111111
111111
222222
222222

second file : Unque records!!

100045
121231
343412
453455
435345

Can anyone help this using DFSORT. i can do the same in COBOL program
Need help!!!!!
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


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

PostPosted: Wed Jun 07, 2006 9:26 pm
Reply with quote

Here's a DFSORT/ICETOOL job that will do what you asked for:

Code:

//S1 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//IN DD DSN=...  input file
//DUPS DD DSN=...  dups output file
//NODUPS DD DSN=... nodups output file
//TOOLIN DD *
SELECT FROM(IN) TO(DUPS) ON(1,6,CH) ALLDUPS DISCARD(NODUPS)
/*
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 How to split large record length file... DFSORT/ICETOOL 8
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Access to non cataloged VSAM file JCL & VSAM 18
Search our Forums:

Back to Top