Maximum Number of Records on VSAM file?
Moderator: Moderator Group
Maximum Number of Records on VSAM file?
Is there a command to specify when defining a VSAM file that the maximum number or records it should ever hold is 100 records?
- dbzTHEdinosauer
- Moderator
- Posts: 981
- Joined: Mon Oct 02, 2006 8:31 pm
no command.
vsam, unlike db2, does not have 'triggers',
thus the best you can do is
only have one module that is CALLed
(in batch: dynamic would be best, but you can link it as static ..
in CICS you don't have that problem, as every thing should be dynamically linked,
but IMUO it would be best in CICS to execute a CICS LINK to the module)
that way, you would have only two modules that deal with i/o
and could control the number of records,
but then you have the problem of determining the current record count.
easiest way would to have a integer counter in each record
(which would be the primary part of the alt-index and only allow 1 thru 100.)
but, then you have the logical question that bubbles up from this morass,
why do you only want 100 records?
vsam, unlike db2, does not have 'triggers',
thus the best you can do is
only have one module that is CALLed
(in batch: dynamic would be best, but you can link it as static ..
in CICS you don't have that problem, as every thing should be dynamically linked,
but IMUO it would be best in CICS to execute a CICS LINK to the module)
that way, you would have only two modules that deal with i/o
and could control the number of records,
but then you have the problem of determining the current record count.
easiest way would to have a integer counter in each record
(which would be the primary part of the alt-index and only allow 1 thru 100.)
but, then you have the logical question that bubbles up from this morass,
why do you only want 100 records?
Dick Brenholtz
JCL, SQL and code in programs have an irritating habit of doing what you say,
not what you meant.
JCL, SQL and code in programs have an irritating habit of doing what you say,
not what you meant.
FREE TUTORIALS
Tutorials
Free tutorials from mainframegurukul
- JCL Tutorial
Covers all important JCL concepts. - Cobol Tutorial
This tutorials covers all Cobol Topics from STRING to COMP-3. - DB2 Tutorial
DB2 Tutorial focuses on DB2 COBOL Programming. - SORT Tutorial
This Tutorial covers all important aspects of DFSORT with examples - CICS Tutorial
This CICS tutorial covers CICS concepts and CICS Basics, CICS COBOL Programming.
Interview
Mainframe Interview questions
- Cobol Interview Questions
50+ Interview Questions - JCL Interview Questions
50+ Interview Questions - DB2 Interview Questions
100+ Interview Questions - CICS Interview Questions
70+ Interview Questions - VSAM Interview Questions
27 Interview Questions
Other References
Mainframe Tools and others
- XPEDITER Reference
Explains how we can debug a program - FILEAID Reference
Explains how to browse , edit and delete datasets - Change Man Reference
Quick Start tutorial on Changeman - Abend Reference
Important Abend codes explained - FaceBook Page
MainframeGurukul FaceBook Page - LinkedIn Page
MainframeGurkul Linkedin Page