Allocating non-VSAM data sets
This section describes the physical sequential (PS) and partitioned (PDS) data sets. IBM Z Workload Scheduler non-VSAM data sets shows the non-VSAM data sets and their characteristics. Before you allocate the non-VSAM data sets, review the following sections, which contain important information about each of these data sets.
For all the sequential data sets listed below, the current version of IBM Z Workload Scheduler supports DSNTYPE LARGE, which allows allocation of sequential data sets larger than 65535 tracks.
| Sample | DD Name | RECFM | LRECL | BLKSIZE | DSORG | Data set |
|---|---|---|---|---|---|---|
| EQQPCS02 | AUDITPRT | FBA | 133 | 13300 | PS | Input to EQQAUDIT |
| EQQPCS01 | – | U | – | 6300 | PS | CLIST library (optional) |
| EQQPCS01 | EQQCKPT | U | – | 8200 | PS | Checkpoint |
| EQQPCS01 | EQQBKPT | U | – | 8200 | PS | Backup checkpoint |
| EQQDLnn | U | – | 6300 | PS | Dual job-tracking-log | |
| EQQPCS01 | EQQDMSG | VBA | 84 | 3120 | PS | IBM Z Workload Scheduler diagnostic message and trace |
| EQQPCS01 | EQQEMAIL | FB | 80 | 3120 | PDS | IBM Z Workload Scheduler email |
| EQQPCS01 | EQQINCID | FB | 80 | 3120 | PDS | IBM Z Workload Scheduler incident notification |
| EQQPCS01 | EQQSMTP | FB | 80 | 3120 | PDS | SMTP data set (internal reader) |
| EQQPCS02 | EQQDUMP | FB | 80 | 3120 | PS | IBM Z Workload Scheduler diagnostic |
| EQQPCS11 | EQQDUMP | FB | 80 | 3120 | PS | Diagnostic for Output collector |
| EQQPCS02 | EQQEVDS/ |
F | 100 | 100 | PSU | Event |
| EQQPCS01 | EQQEVLIB | FB | 80 | 3120 | PDS | Event-driven workload automation (EDWA) configuration file repository |
| EQQPCS02 | EQQINCWK | FB | 80 | 3120 | PS | JCC incident work |
| EQQPCS01 | EQQJBLIB | FB | 80 | 3120 | PDS | Job library |
| EQQPCS01 | EQQJCLIB | FB | 80 | 3120 | PDS | JCC message table |
| EQQPCS01 | EQQJTABL | F | 240 | 240 | PS | Critical job table log file |
| EQQPCS01 | EQQJTARC | U | – | 6300 | PS | Job-tracking archive |
| EQQPCS01 | EQQJTnn | U | – | 6300 | PS | Job-tracking-log |
| EQQPCS14 | EQQDBARC | U | – | 6300 | PS | Extended-auditing archive |
| EQQPCS14 | EQQDBnn | U | – | 6300 | PS | Extended-auditing log |
| EQQPCS01 | EQQLOGRC | F | 128 | 128 | PS | Joblog and Restart Information pending requests Log data set |
| EQQPCS02 | EQQLOOP | VBA | 125 | 1632 | PS | Loop analysis message log |
| EQQPCS02 | EQQMLOG | VBA | 125 | 1632 | PS | Message log |
| EQQPCS11 | EQQMLOG | VBA | 125 | 1632 | PS | Message log for Output collector started task |
| EQQPCS01 | EQQMONDS | F | 160 | 160 | PSU | Monitoring task data set used to store events for IBM® Tivoli® Monitoring |
| EQQPCS09 | EQQOCPBK | – | – | – | – | Data set to allocate the GDG root. The GDG entry is allocated during DP batch run and contains a backup of the old current plan. |
| EQQPCS11 | EQQOUCEV | F | 160 | 160 | PSU | Stores events used in the communication between the controller and Output collector for retrieving job logs from the z-centric environment. |
| EQQPCS11 | EQQOUCKP | FB | 80 | 3120 | PDSE | Request checkpoint data set used by Output collector as it reads and processes events in the EQQOUCEV data set. |
| EQQPCS01 | EQQPARM | FB | 80 | 3120 | PDS | Initialization-statement library |
| EQQPCS01 | EQQPRLIB | FB | 80 | 3120 | PDS | Automatic-recovery-procedure library |
| EQQPCS01 | EQQSTC | FB | 80 | 3120 | PDS | Started-task submit |
| EQQPCS02 | EQQTROUT | VB | 32756 | 32760 | PS | Input to EQQAUDIT |
| – | EQQYPARM | PDS/PS | PIF | |||
| EQQPCS01 EQQPCS02 | SYSMDUMP | F | 4160 | 4160 | PS | System dump data set |
| EQQPCS11 | SYSMDUMP | F | 4160 | 4160 | PS | System dump data set for Output collector |
| – | – | FB | 80 | 3120 | PS | Job-completion-checker incident log |
You can allocate these non-VSAM data sets by using the samples listed in IBM Z Workload Scheduler non-VSAM data sets, which are generated by the EQQJOBS installation aid.
Allocating an IBM Z Workload Scheduler partitioned data set
//ALLOCPDS JOB STATEMENT PARAMETERS
//*-----------------------------------------*
//* ALLOCATE A PARTITIONED DATA SET *
//*-----------------------------------------*
//ALLOC EXEC PGM=IEFBR14
//SYSUT1 DD DSN=OPCESA.INST.EQQSTC,
// DISP=(,CATLG),
// VOL=SER=volser,
// SPACE=(TRK,(5,0,1)),
// UNIT=3390,
// DCB=(RECFM=FB,LRECL=80,BLKSIZE=3120)Allocating an IBM Z Workload Scheduler sequential data set
//ALLOCPS JOB STATEMENT PARAMETERS
//*----------------------------------------*
//* ALLOCATE A SEQUENTIAL DATA SET *
//*----------------------------------------*
//ALLOC EXEC PGM=IEBGENER
//SYSPRINT DD DUMMY
//SYSUT1 DD DUMMY,DCB=(RECFM=F,BLKSIZE=100,LRECL=100)
//SYSUT2 DD DSN=OPCESA.INST.EVENTS,
// DISP=(NEW,CATLG),
// UNIT=3390,
// VOL=SER=volser,
// SPACE=(CYL,3,,CONTIG),
// DCB=(RECFM=F,BLKSIZE=100,LRECL=100,DSORG=PS)
//SYSIN DD DUMMYThe following sections describe the IBM Z Workload Scheduler non-VSAM data sets. They provides you important information to be considered when allocating your data sets.