Post #1
0 votes
Sam
Reputation
5
Posts: 28
Joined: Jul 1, 2026, 2:30 PM
Posted: Aug 1, 2026, 11:25 AM
Allocating a file and the panel asks for RECFM, LRECL, BLKSIZE. I keep guessing FB / 80 / 0.
What do these actually control?
Allocating a file and the panel asks for RECFM, LRECL, BLKSIZE. I keep guessing FB / 80 / 0.
What do these actually control?
RECFM = record format. FB = fixed blocked (every record same length). VB = variable.
LRECL = length of one record in bytes. 80 is classic card image.
BLKSIZE = how many bytes per block on disk. Often a multiple of LRECL for FB. 0 can mean "let the system pick" in some shops.
Wrong LRECL vs what the program writes = pain later.
If you are cloning an existing file, copy its attributes instead of inventing new ones.
You must be signed in to reply to this thread