SYSPARMS command

This section provides an overview of the SYSPARMS command.

Usage

Use the SYSPARMS command to generate System Parameter reports. This command replaces the SYSPRMDD card. You can still use the SYSPRMDD in existing jobs, but not concurrently with the SYSPARMS command.

Usage notes

Syntax of the SYSPARMS command

Read syntax diagramSkip visual syntax diagram                                (1)
             .-TRACE subcommand------.
>>-SYSPARMS--+-----------------------+-------------------------><
             |                 (2)   |
             '-FILE subcommand-------'
 
Notes:
  1. You can specify TRACE only once.
  2. You can specify FILE only once.

Subcommands

The subcommands are described in detail, together with their various options, in the following sections.

Sample JCL for requesting SYSPARMS functions

The following is a sample of the JCL required to produce SYSPARMS reports and traces. See DD statements for descriptions of the DD statements.

Figure 10. Sample JCL for requesting SYSPARMS functions
//SYSPBTCH JOB ,MSGCLASS=X,CLASS=A,NOTIFY=USER1,REGION=0M    
//* --------------------------------------------------
//* BATCH SYSTEM PARAMETERS JCL.
//* --------------------------------------------------
//PEMAIN   EXEC PGM=FPECMAIN
//STEPLIB  DD  DSN=FPE.FPLIB.RKANMOD,DISP=SHR       
//* ----------------------------------------             
//INPUTDD  DD  DISP=SHR,DSN=DEA.DPMOUT.V8I106            
//SYSOUT   DD  SYSOUT=*                                  
//SYSPRINT DD  SYSOUT=*                                  
//DPMLOG   DD  SYSOUT=*                                  
//JOBSUMDD DD  SYSOUT=*                                  
//SYSUDUMP DD  SYSOUT=*                                  
//* FOLLOWING ARE REPORT AND FILE DD NAMES
//SYFILDD1 DD  SYSOUT=*           -> Used for FILE
//SYTRCDD1 DD  SYSOUT=*           -> Used for TRACE
//* ----------------------------------------             
//SYSIN    DD  *   
 SYSPARMS          
 TRACE              
 FILE             
 EXEC              
 /*                

The OMEGAMON XE for DB2 PE command language shown in this section is not appropriate in all circumstances. You must modify it to meet your requirements.

Most of the DD statements with a SYSOUT destination do not have to be specified because they are dynamically allocated by OMEGAMON XE for DB2 PE. See the individual DD statement descriptions for more information.

Note:
  1. There is a performance advantage in omitting DPMOUTDD from your JCL. For more information, see DPMOUTDD statement.
  2. The OMEGAMON XE for DB2 PE command stream is only processed if EXEC is included as the last command. Otherwise, OMEGAMON XE for DB2 PE only checks the syntax.