Previous Topic: DELTANext Topic: DESTCHK


DEQUE

The DEQUE option issues a DEQ macro instruction to free selected data sets that are enqueued to CA JCLCheck (or to the job that invokes CA JCLCheck under CA Roscoe).

You can optionally request a list of the DEQ macro return codes, data set names, and so forth.

This option has the following format:

DEQue[(List|NOList)]|NODEQue

Default: NODEQue

Example: Free selected data sets

The following example dequeues the data sets allocated to SYSPROC and PROC01 and makes them available for use by other jobs on an exclusive basis (DISP=OLD).

    //JCLCHECK EXEC PGM=JCLCHECK,PARM=DEQ
    //SYSPRINT DD   SYSOUT=*
    //JCHKFREE DD   DUMMY marks start of DSNs to free

    //SYSPROC  DD   DSN=SYS1.PROCLIB,DISP=SHR
    //         DD   DSN=SYS2.PROCLIB,DISP=SHR
    //PROC01   DD   DSN=TEST.PROCLIB,DISP=SHR
    //JENDFREE DD   DUMMY marks end of dsn's to free
    //SYSTERM  DD   SYSOUT=*