COBOL Messages
Blocking/Deblocking for file %1 will be performed by compiler-generated
code.
0
Cause . . . . . : When records in
this file are written or read between the program and the operating system,
they travel in blocks, rather than individually.
- The compiler has generated code to block and deblock these records for
READ and WRITE operations. The I-O Feedback area changes only after a
block of data has been written or read between the program and the operating
system.
- A boundary violation condition occurs when the number of records written
exceeds the maximum size of the member. Records written beyond the
maximum size of the member are lost.
Recovery . . . : To avoid boundary problems,
use a file access of other than SEQUENTIAL, or use the SIZE option of the
CRTPF or CHGPF command to specify an adequate member size.
[ Top of Page | Previous Page | Next Page | Table of Contents ]