IMS exit input file to LDESA
search cancel

IMS exit input file to LDESA

book

Article ID: 130477

calendar_today

Updated On:

Products

MICS Resource Management

Issue/Introduction

Which file from the IMS exit would be the input to LDESA?


//*************************************************************** 
//** SYSTEM LOG DATASETS OUTPUT/TP34S ** 
//*************************************************************** 
//DFSSLOGP DD DSN=HLQ.SLDSP.V99,  
// LABEL=RETPD=07,VOL=(,,,99),
// DISP=(,CATLG,CATLG),UNIT=(TP34S,,DEFER),
// DCB=(BLKSIZE=32760,BUFNO=20,DEN=4)
//DFSSLOGS DD DSN=HLQ.SLDSS.V99, 
// LABEL=RETPD=07,VOL=(,,,99),
// DISP=(,CATLG,CATLG),UNIT=(TP34S,,DEFER),
// DCB=(BLKSIZE=32760,BUFNO=20,DEN=4)
//*************************************************************** 
//** RECOVERY LOG DATASET OUTPUT/DASD ** 
//*************************************************************** 
//RLDSDD1 DD DSN=HLQ.RLDSP.V99, 
// UNIT=SYSDA,DISP=(,CATLG,CATLG),
// MGMTCLAS=TAPE@,
// DCB=(BUFNO=20,BLKSIZE=22528)
 

Resolution

DFSSLOGP DD is for primary output SLDS dataset and DFSSLOGS is for secondary SLDS output dataset. 

The purpose of the secondary output SLDS is that it is used for dual archiving.

Therefore you can use one of these two, primary or secondary, because they should be identical.

The IBM Log Archive utility is found here


DFSSLOGP DD (for primary output SLDS)

DFSSLOGS DD (for secondary output SLDS)
Defines the SLDS used for output. Its format will depend on the device type used. If the SLDS is on DASD, you must allocate sufficient space to contain the log being archived. The SLDS block size can be specified and can be different from the input data set block size. If not specified, the block size of the input data set is used. The secondary SLDS is optional and specifies dual archiving. If the input is a batch SLDS and the Log Archive utility is run with DBRC present, dual output can be created only if dual SLDS records are already known to DBRC.

If dual SLDSs are being created, they can have different block sizes. However, if FEOV is specified, it is ignored unless the block size of both data sets are equal and both are allocated to tape. If tape is specified, it must have a standard label. You can specify 2 through 99 write buffers.



 

Additional Information

DFSSLOGP DD (for primary output SLDS) 
DFSSLOGS DD (for secondary output SLDS)  

We recommend using the Primary one.