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

Counting Matched Records and writing alonwith a new record


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

New User


Joined: 12 May 2008
Posts: 13
Location: Hartford

PostPosted: Wed Jul 30, 2008 12:52 am
Reply with quote

Hello All,

I have matching input records.

First 4 bytes is the Key.

AAAA 12 234
AAAA 32 122
AAAA 54 344
AAAA 54 567
AAAA 21 876
BBBB 11 123
BBBB 12 111
BBBB 13 222
XXXX 12 456
XXXX 10 987
XXXX 14 789
XXXX 78 765

The LRECL is 11. The input file Keys are in sorted order

I require the output file having records having the Matched Keys which are = 4 or greater than 4..so my output file will look alike
means when next keys comes in i would like to see the count of matching records which are greater than 4.

AAAA 12 234
AAAA 32 122
AAAA 54 344
AAAA 54 567
AAAA 21 876
Count 5
XXXX 12 456
XXXX 10 987
XXXX 14 789
XXXX 78 765
Count 4.

Thanks,
Vikas
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 Jul 30, 2008 1:09 am
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 (FB/11)
//OUT DD DSN=...  output file (FB/11)
//TOOLIN   DD    *
SELECT FROM(IN) TO(OUT) ON(1,4,BI) HIGHER(3) USING(CTL1)
/*
//CTL1CNTL DD *
  OPTION COPY
  OUTFIL FNAMES=OUT,REMOVECC,
    SECTIONS=(1,4,
      TRAILER3=('COUNT ',COUNT=(EDIT=(IT))))
/*
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 How to split large record length file... DFSORT/ICETOOL 10
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts FINDREP - Only first record from give... DFSORT/ICETOOL 3
Search our Forums:

Back to Top