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

Record count of a TAPE dataset


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
arps4u

New User


Joined: 03 Jun 2006
Posts: 4

PostPosted: Sat Jun 03, 2006 3:04 pm
Reply with quote

Hi,

I've a tape dataset which is having alot many records.

I want to know the record count of this dataset.
I tried using ICETOOL & sorting, it works but taking hell lot of time.

Can anyone provide me with an easier & quick solution?

Kindly reply ASAP.

Thanks.
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: Sat Jun 03, 2006 8:53 pm
Reply with quote

Quote:
I tried using ICETOOL & sorting, it works but taking hell lot of time.


You don't have to sort to get the record count. Copying instead of sorting would be faster. Try this DFSORT/ICETOOL job:

Code:

//S1 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//IN DD DSN=...  input file
//TOOLIN DD *
COUNT FROM(IN)
/*


The count will be printed in a message in TOOLMSG.

With this method, you're still reading all of the input records, but you're doing a copy instead of a sort and you're not writing any output records.
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts How to split large record length file... DFSORT/ICETOOL 10
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 FINDREP - Only first record from give... DFSORT/ICETOOL 3
No new posts To find whether record count are true... DFSORT/ICETOOL 6
Search our Forums:

Back to Top