You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For fixed-length unblocked records, LRECL must equal BLKSIZE:
"blockSize": 80,
"logicalRecordLength": 80,
"recordFormat": "F",
"dataSetOrganization": "PS"
(то есть lrecl == blksize)
For PDSEs or compressed-format data sets with fixed-length blocked records, LRECL must be specified when the data set is opened for output - not sure, need to check with experienced z/OS programmers to see what exactly this means
For the extended logical record interface (XLRI) for ISO/ANSI variable spanned records, LRECL must be specified as LRECL=0K or LRECL=nK:
"blockSize": 32760, - 32760 bytes (maximum size for block records in VBS format).
"logicalRecordLength": 0,
"recordFormat": "VBS",
"dataSetOrganization": "PS"
OR
"blockSize": 32760,
"logicalRecordLength": 4096, == 4K
"recordFormat": "VBS",
"dataSetOrganization": "PS"
It is worth considering the option of adding presets for these types of datasets.
The text was updated successfully, but these errors were encountered:
https://www.ibm.com/docs/en/zos/2.4.0?topic=options-record-length-lrecl
"blockSize": 80,
"logicalRecordLength": 80,
"recordFormat": "F",
"dataSetOrganization": "PS"
(то есть lrecl == blksize)
"blockSize": 32760, - 32760 bytes (maximum size for block records in VBS format).
"logicalRecordLength": 0,
"recordFormat": "VBS",
"dataSetOrganization": "PS"
OR
"blockSize": 32760,
"logicalRecordLength": 4096, == 4K
"recordFormat": "VBS",
"dataSetOrganization": "PS"
It is worth considering the option of adding presets for these types of datasets.
The text was updated successfully, but these errors were encountered: