MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Mixed dups.

 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Utilities
View previous topic :: View next topic  
Author Message
ramy2016
Beginner


Joined: 18 Apr 2016
Posts: 47
Topics: 15

PostPosted: Fri Dec 20, 2024 12:12 pm    Post subject: Mixed dups. Reply with quote

Good day everyone and Happy Holiday Season!

Could someone, please, let me know how to accomplish the following with DFSORT step (SORT or ICETOOL).

I have a dataset, FB LRECL=80, where there could be duplicate Account-No records accompanied by Account-Class values.
There could be three types of duplicates:
- duplicate Account-No recs within Account-Class '9'
- duplicate Account-No recs between Account-Class '9' and Account-Class '5'
- duplicate Account-No recs within Account-Class '9' AND a record from Account-Class '5'
- there could never be duplicate Account-No recs within Account-Class '5'.

All duplicates within Account-Class '9' should go to an Output. Also recs of Account-Class '9' take precedence over Class '5', so if there are duplicate Accounts from both Classes, only Account-Class '9' should make it to the Output.
And non-dups from Account-Class '5' should also be in the Output.

Input records could be sorted in any order, as needed.

Input.
Code:
----+----1----+----2----+----3----+----4----+----5----+----6
              111111111111        5           
              222222222222        9           
              222222222222        9           
              333333333333        5           
              333333333333        9           
              444444444444        5           
              444444444444        9           
              444444444444        9
              444444444444        9
              555555555555        9     
              666666666666        5     


Output.
Code:
----+----1----+----2----+----3----+----4----+----5----+----6
              111111111111        5           
              222222222222        9           
              222222222222        9           
              333333333333        9           
              444444444444        9           
              444444444444        9
              444444444444        9
              555555555555        9     
              666666666666        5     


Thanks.
Back to top
View user's profile Send private message
kolusu
Site Admin
Site Admin


Joined: 26 Nov 2002
Posts: 12376
Topics: 75
Location: San Jose

PostPosted: Fri Dec 20, 2024 5:29 pm    Post subject: Reply with quote

ramy2016,

You need to use the trick of joinkeys matching the file to it self. The second file will count the number of duplicates and upon matching every record has the counter. Now we can just eliminate the records with dup count > 1 and class of '5' on OUTFIL

Here is an untested DFSORT JCL which will give you the desired results

Code:

//STEP0100 EXEC PGM=SORT                                             
//SYSOUT   DD SYSOUT=*                                               
//INA      DD *                                                     
              111111111111        5                                 
              222222222222        9                                 
              222222222222        9                                 
              333333333333        5                                 
              333333333333        9                                 
              444444444444        5                                 
              444444444444        9                                 
              444444444444        9                                 
              444444444444        9                                 
              555555555555        9                                 
              666666666666        5                                 
//INB      DD *                                                     
              111111111111        5                                 
              222222222222        9                                 
              222222222222        9                                 
              333333333333        5                                 
              333333333333        9                                 
              444444444444        5                                 
              444444444444        9                                 
              444444444444        9                                 
              444444444444        9                                 
              555555555555        9                                 
              666666666666        5                                 
//SORTOUT  DD SYSOUT=*                                               
//SYSIN    DD *                                                     
  OPTION COPY                                                       
  JOINKEYS F1=INA,FIELDS=(15,11,A)         # KEY                     
  JOINKEYS F2=INB,FIELDS=(01,11,A)         # KEY                     
  REFORMAT FIELDS=(F1:01,80,               # 80 BYTE RECORD         
                   F2:12,08)               # SUM COUNTER             
                                                                     
  OUTFIL BUILD=(01,80),                    # BUILD ONLY 80 BYTES     
  OMIT=(81,8,ZD,GT,1,AND,                  # OMIT DUP COUNTER > 1   
        35,1,CH,EQ,C'5')                   # CLASS '5'               
/*                                                                   
//JNF2CNTL DD *                                               
  INREC BUILD=(15,11,                      # KEY             
               C'00000001')                # COUNTER OF 1     
                                                             
   SUM FIELDS=(12,08,ZD)                   # SUM THE COUNTER 
/*                                                           

_________________
Kolusu
www.linkedin.com/in/kolusu
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Utilities All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group