Multiple choice technology mainframe

Identify the mandatory info required to access uncatalogged dataset?

  1. space,dcb,unit,sol serial

  2. space,dcb,vol serial no

  3. Unit,vol serial no

  4. vol serial no

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

To access an uncataloged dataset in mainframe systems, you must provide the Unit (device type or unit address) and the volume serial number (volser) to locate the data set. Space allocation and DCB information are not mandatory for access. The volser alone is insufficient without the unit information.

AI explanation

In JCL, when a dataset is cataloged, the system can look up its UNIT (device type) and VOL=SER (volume serial number) automatically from the catalog, so a DD statement only needs DSN and DISP. When the existing dataset is NOT cataloged, the catalog lookup is unavailable, so the JCL must explicitly supply both UNIT and VOL=SER so the system knows which device type and which physical volume to mount/search for the dataset — VOL=SER alone is not enough because it doesn't tell the system the device type needed to search that volume. SPACE and DCB parameters are only required when allocating/creating a new dataset, not when accessing an existing one. So the mandatory info for accessing an uncataloged dataset is UNIT and VOL=SER together.