Previous Topic: How to UseNext Topic: EXTEND (Extend Data or Index Areas)


Example JCL

The following shows the command to extract the data table POL in area POL in database 1 to the output data set, POLOUT. The FILEOUT statement is shown immediately before the EXTBKUP line.

Note: Use the following as a guide to prepare your JCL. The JCL statements are for example only. Lowercase letters in a statement indicate a value you must supply. Code all statements to your site and installation standards.

 //jobname    See the note above and JCL Requirements.
 //       EXEC PGM=DBUTLTY,REGION=4M
 //STEPLIB    See the note above and JCL Requirements.
 //CXX      DD DSN=cxx.data.set,DISP=SHR           Directory data set
 //POLOUT   DD DSN=db001.pol,DISP=SHR              Output extract file
 //INFILE   DD DSN=infile,DISP=SHR                 Input data set
 //SYSIN    DD *                                   Command Input
          FILEOUT  DDNAME=POLOUT,TABLE=POL
          EXTBKUP  DDNAME=INFILE
 /*

Sample Report

Following is a sample report page. For an example report header, see Sample Report Headers.