How to send Thread Terminator for Db2 for z/OS Monitor Profile to technical support if requested
search cancel

How to send Thread Terminator for Db2 for z/OS Monitor Profile to technical support if requested

book

Article ID: 36059

calendar_today

Updated On:

Products

Thread Terminator for DB2 for z/OS

Issue/Introduction

Sample JCL which should be used if Thread Terminator for Db2 for z/OS (PTT) Monitor Profile is requested by support.

Resolution

The following sample JCL contains the correct block size and record length parameters for a PTT Monitor Profile.
Enter the Monitor Profile name in the DSN parameter of the INFILE DD statement.
After the job completes, Terse the OUTFILE and send it to the associated Broadcom support case.

//enter a valid jobcard here.
//*                                                             
//STEP010  EXEC PGM=IDCAMS
//********************************************************************   
//* INFILE - The name of your Monitor Profile. This name consist of:
//*
//*     1)  Your High Level qualifier
//*     2)  The constant:  PTTMPR 
//*     3)  The Name of your Monitor Profile
//*   
//*  For example, if your <High Level qualifier> is CA.DB2.TOOLS, & the 
//*  Name of your Monitor Profile is PROFILE, the name of your 
//*  Monitor Profile file is:
//*
//*   CA.DB2.TOOLS.PTTMPR.PROFILE   
//********************************************************************
//INFILE   DD DSN=hlq.PTTMPR.profilename,DISP=SHR
//*                                                             
//OUTFILE  DD DSN=Your.Output.Dataset,                          
//            DISP=(NEW,CATLG,DELETE),                          
//            UNIT=SYSDA,                                       
//            SPACE=(CYL,(1,1),RLSE),                           
//            DCB=(RECFM=VB,LRECL=32756,BLKSIZE=32760)          
//*                                                             
//SYSPRINT DD SYSOUT=*                                          
//SYSUDUMP DD SYSOUT=*                                          
//AMSDUMP  DD 
//SYSOUT   DD SYSOUT=* 
//SYSIN    DD *                                   
 REPRO INFILE (INFILE) OUTFILE (OUTFILE) REPLACE  
/*