Within CA Database Management for Db2 for z/OS Xmanager (PXM) the following OPT= line is specified:
//PTXMAN PROC XMANID='0000',XSYS='Y',INIT='XMANINIT',
// OPT='CUSH(10,50),MAXREGN(Y),SERVERS(10),TIMEOUT(150),CPUTIME(150)'
Need to add the ECSA(95) parameter to the OPT= line. Is there a continuation marker to add the new option on another line?
Release : 20.0
Component : Execution Manager
There is the following option within the CA Database Management Solutions for Db2 for z/OS 20 documentation within
the Prepare the Xmanager Started Task Procedure section:
PARMS(mbr-name)
Specifies a member name in the PDS on the PXMPARM DD statement of the Xmanager.
This member lets you pass a list of parameters exceeding 100 characters to your
Xmanager startup job. Parameters are separated by a comma, for example:
CUSHION(64,100),CPUTIME(999),CUSH64(200,5000)
Create a XMANPARM member in hlq.CDBAPXMP which is allocated on the PXM //PXMPARM DD
with the following contents:
CUSH(10,50),MAXREGN(Y),SERVERS(10),TIMEOUT(150),CPUTIME(150),ECSA(95)
Then in the Xmanager specify:
// OPT='PARMS(XMANPARM)'