How to expand the ESP Workload Automation JOBINDEX data set
search cancel

How to expand the ESP Workload Automation JOBINDEX data set

book

Article ID: 36992

calendar_today

Updated On:

Products

ESP Workload Automation

Issue/Introduction

 The ESP Workload Automation JOBINDEX data set is a VSAM KSDS file, and may be enlarged using IDCAMS REPRO. 

 

 

The JOBINDEX data set can be on a multi-volume DASD, and can be greater than 4GB (EAV). 

 

 

 

Environment

Release: All Versions of ESP Workload Automation
Component:

Cause

ESP Jobindex dataset is full.

Resolution


Instructions: 

Stop the ESP master and its proxies.
Backup the current JOBINDEX data set. 
Rename the current JOBINDEX data set. 

Define a new JOBINDEX data set with the desired size.
Copy the old JOBINDEX data set to the newly created one using the IDCAMS REPRO command.
Restart ESP subsystems.

Sample JCL to backup the current JOBINDEX data set:


//BACKUP   EXEC PGM=IDCAMS,REGION=4096K                       
//SYSPRINT DD SYSOUT=*                                               
//SYSIN    DD   *                                                    
 DEFINE CLUSTER(NAME(hlq.ESP.JOBINDEX.BACKUP) MODEL(hlq.ESP.JOBINDEX))
 REPRO IDS(hlq.ESP.JOBINDEX) ODS(hlq.ESP.JOBINDEX.BACKUP)            
/*  

Sample JCL to rename the current JOBINDEX data set:  

//RENAME   EXEC PGM=IDCAMS                                   
//SYSPRINT DD   SYSOUT=*                                     
//SYSIN    DD   *                                            
 ALTER hlq.ESP.JOBINDEX NEWNAME(hlq.old.JOBINDEX) 
/*


Sample JCL to define a new JOBINDEX data set:

//CREATE    EXEC PGM=IDCAMS,REGION=4096K                                 
//SYSPRINT DD SYSOUT=*                                       
//SYSIN    DD *                                              
 DEFINE CLUSTER                      -                     
   (NAME('hlq.ESP.JOBINDEX')     -                      
    KEYS(18,0)                            -                     
    VOLUME(xxxxxx)                    -                      
    REUSE                                   -                     
    RECSZ(300 32756)                 -                     
    INDEXED                               -                     
    SHAREOPTIONS(3,3)              -                     
    CYLINDERS(xxx,yyy)              -                     
    FREESPACE(30,30))           
/*

Sample JCL to copy the old JOBINDEX data set to the newly created JOBINDEX data set:

//COPY EXEC PGM=IDCAMS,REGION=4096K                                                    
//SYSPRINT DD SYSOUT=*                                                         
//SYSIN    DD   *                                                             
 REPRO  IDS(hlq.old.JOBINDEX) ODS(hlq.ESP.JOBINDEX)                          
/*