Previous Topic: Installing Language ChangesNext Topic: Sample z/VSE JCL


Sample z/OS JCL

Unload

Use the following JCL to run a batch language maintenance job to unload the table. To unload a single language, replace the R=UNLOAD with R=UNLOAD,LANGUAGE=cc where cc is the 2-character language code you want to back up.

 //jobname    See Preparing JCL for Batch CA Dataquery Utilities.
 //       EXEC PGM=DQLANGMT
 //STEPLIB    See Preparing JCL for Batch CA Dataquery Utilities.
 //SYSUDUMP DD SYSOUT=*
 //SYSPRINT DD SYSOUT=*                            Print Output
 //*  Specify the following according to your site standards:
 //SNAPER   DD ...
 //SYSOUT   DD ...
 //DQLMUNL  DD DSN=dq.lang.backup.dataset,UNIT=device,...
 //             DCB=(RECFM=VB,LRECL=2010,BLKSIZE=2014,DSORG=PS)
 //SYSIN    DD *
  R=UNLOAD
 /*
 //
DQLMUNL

DQLMUNL is the output data set for a DQLANGMT unload of panels. It can reside on tape or disk. This statement is needed only in JCL specifying a DQLANGMT UNLOAD.

Load

Use the following JCL to run a batch language maintenance job to load a backup tape (either a user-created backup or a CA-provided load or revision tape).

 //jobname    See Preparing JCL for Batch CA Dataquery Utilities.
 //       EXEC PGM=DQLANGMT
 //STEPLIB    See Preparing JCL for Batch CA Dataquery Utilities.
 //SYSUDUMP DD SYSOUT=*
 //SYSPRINT DD SYSOUT=*                            Print Output
 //*  Specify the following according to your site standards:
 //SNAPER   DD ...
 //SYSOUT   DD ...
 //DQLMLOD  DD DSN=dq.lang.backup.dataset
 //SYSIN    DD *
  R=LOAD
 /*
 //
DQLMLOD

DQLMLOD is the input data set for a DQLANGMT load of panels. It can reside on tape or disk. This statement is needed only in JCL specifying a DQLANGMT LOAD.