kevodaly
New User
Joined: 05 Mar 2009 Posts: 1 Location: Ireland
|
|
|
|
Hi.
I have a TSO batch job that acts as an interface for MQ messages. When a message is received, the program will run and depending on the transaction type, other Cobol modules may be called.
One of these modules accesses a VSAM file. This module will be called once for each message received. The module contains a Cobol OPEN, READ using a key and CLOSE of that VSAM file.
My question is, does the Cobol OPEN statement refresh buffers associated with that VSAM file? i.e. For each call of that module, will the READ of the VSAM file be a physical read, or could it fetch a record from the buffer if it happens to be in the same Control Interval.
Thanks for your help!
Kevin |
|
Bill Woodger
Moderator Emeritus
Joined: 09 Mar 2011 Posts: 7309 Location: Inside the Matrix
|
|
|
|
I've always assumed that when you close a file, that is it. If you open again, then you'd be starting clean. No buffers until first read/write from your program.
If I wanted to hope for something different, I'd check it out in "the manuals"/google. |
|