DD Statement - new permanent data set narrative
DSN=, UNIT=. SPACE=
These were discussed on earlier slides.
DISP=
NEW is the default data set status hence the leading comma. If the job is successful the data set will be kept and catalogued.
If the job ABENDS, the data set will be deleted.
LRECL=, RECFM=, BLKSIZE=
Unlike on a PC, most traditional data set types are known as record format, and the system needs to know the size of each
record (LRECL), whether the records are fixed in size or variable in size (RECFM), and the size of groups of records to be
written (BLKSIZE).
This information may be optional as it could be hard coded within a program, in which case valid values in the JCL will be ignored.
For input data sets the information can be retrieved from the data set label.


