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

DFSORT:Count duplicate records in a file


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

New User


Joined: 07 Jul 2005
Posts: 51

PostPosted: Mon Dec 19, 2005 4:12 pm
Reply with quote

Hi,

Please try this problem..I want to count the duplicate records in file.
Code:
Infile1:                           
aaaaa   
aaaaa
bbbbb
bbbbb
bbbbb
bbbbb
ccccc


Code:
outfile:
aaaaa 2             
aaaaa 2
bbbbb 4
bbbbb 4
bbbbb 4
bbbbb 4
ccccc 1



without using ICETOOL ,is it possible to complete this task?
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: Mon Dec 19, 2005 8:53 pm
Reply with quote

Quote:
without using ICETOOL ,is it possible to complete this task?


Why "without ICETOOL"? If you have DFSORT, then you have ICETOOL. ICETOOL has been shipped free with DFSORT since 1991!
Back to top
View user's profile Send private message
Phantom

New User


Joined: 04 Sep 2005
Posts: 25

PostPosted: Tue Dec 27, 2005 12:24 pm
Reply with quote

Pushpagiri,

Are you sure that you are having DFSORT ? If you are having DFSORT, then why don't you use ICETOOL as Frank Suggested ?

Without, using ICETOOL, I can think of this solution but the output file will have only one record for each key with the count that displays the number of times each key is repeated.

Check this:
Code:

//R010   EXEC  PGM=SORT
//SORTIN   DD *
/*
//SORTOUT  DD  SYSOUT=*
//SYSOUT    DD  SYSOUT=*
//SYSIN      DD  *
  INREC FIELDS=(1,5,9:X,SEQNUM,8,ZD)
  SORT FIELDS=(1,5,CH,A)
  SUM FIELDS=(10,8,ZD)
/*


Hope this helps,

Cheers,
Phantom
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 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts To get the count of rows for every 1 ... DB2 3
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Duplicate transid's declared using CEDA CICS 3
Search our Forums:

Back to Top