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

count records based on keys


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

New User


Joined: 10 Jul 2005
Posts: 58

PostPosted: Sun Nov 06, 2005 7:09 pm
Reply with quote

Hi all,

How can find out the number of records in a ksds file. Here is define options of ksds file:
RECORG=KS,KEYLEN=9,KEYOFF=10489,LRECL=10512,BLKSIZE=0,
UNIT=3390,SPACE=(CYL,(1,1))

I would like to count how many records there are in the ksds file based on a particular key. The key is CON and its position starts at 4100.

Thanks in advance,
Hyuzen
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: Sun Nov 06, 2005 9:36 pm
Reply with quote

If you just want to display the count, you can use this DFSORT/ICETOOL job:

Code:

//S1 EXEC PGM=ICETOOL                         
//TOOLMSG DD SYSOUT=*                         
//DFSMSG DD SYSOUT=*                         
//IN DD DSN=...  VSAM input file             
//TOOLIN DD *                                 
COUNT FROM(IN) VSAMTYPE(V) USING(CTL1)       
//CTL1CNTL DD *                               
   OPTION VLSCMP                             
   INCLUDE COND=(4104,3,CH,EQ,C'CON')         
/*                                           


The count will be displayed in TOOLMSG. For example:

ICE628I 0 RECORD COUNT: 000000000000003
Back to top
View user's profile Send private message
hyuzen

New User


Joined: 10 Jul 2005
Posts: 58

PostPosted: Tue Nov 08, 2005 3:31 am
Reply with quote

Hi Frank,

Thank you very much for your quick response.

Bye,
Hyuzen
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 0
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts To get the count of rows for every 1 ... DB2 3
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Pulling a fixed number of records fro... DB2 2
Search our Forums:

Back to Top