What Is The Difference B/w Start Browse and Sequential read
Moderators: DikDude, Natarajan, Moderator Group
What Is The Difference B/w Start Browse and Sequential read
What Is The Difference Between start Browse and Sequential read in CICS both will do same work .So, what is need of new command like startbr.
- dbzTHEdinosauer
- Moderator
- Posts: 981
- Joined: Mon Oct 02, 2006 8:31 pm
my .2 cents.
STARTBR , READNEXT, READPREV, ENDBR command are to browse the file from starting or from a postion in the file to till end of the file.. we can read the file in reverse way also.
I dont know, about other sequential read in CICS. what is the other method.. you are saying sequential read in CICS.
Yes, we can read the records using CICS READ command for particular key. But that will come under randome read.
do let me know, what is that sequentail read other than START BROWSE
STARTBR , READNEXT, READPREV, ENDBR command are to browse the file from starting or from a postion in the file to till end of the file.. we can read the file in reverse way also.
I dont know, about other sequential read in CICS. what is the other method.. you are saying sequential read in CICS.
Yes, we can read the records using CICS READ command for particular key. But that will come under randome read.
do let me know, what is that sequentail read other than START BROWSE
Natarajan
Chennai
Chennai
The STARTBR command only affects the dataset pointer. It's used specifically to set the dataset pointer just before a specific record based on the key parameters.
The READNEXT/READPREV commands retrieve the record either after or before the pointer based on the command. After a successful read the dataset pointer is moved 1 record in that direction (if possible). If the pointer is at the beginning of the dataset and a READPREV is issued it will return and EOF response.
Once you are done reading the file in this manner your must issue a ENDBR, otherwise you cannot do any new STARTBR or dynamic reads.
This is the only way to do sequential reads within the CICS environment.
The READNEXT/READPREV commands retrieve the record either after or before the pointer based on the command. After a successful read the dataset pointer is moved 1 record in that direction (if possible). If the pointer is at the beginning of the dataset and a READPREV is issued it will return and EOF response.
Once you are done reading the file in this manner your must issue a ENDBR, otherwise you cannot do any new STARTBR or dynamic reads.
This is the only way to do sequential reads within the CICS environment.
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