We use a PDS library for ESP Procedures, and it's out of space. How to compress it without stopping ESP?
Component: ESP Workload Automation
Release: ALL
Two possible solutions:
#1 If the library has been pre-allocated to ESP STC, then issue ESP commands PREALLOC with UNALLOC option or UNALLOC from page mode like below:
PREALLOC CYBER.PROC.LIB UNALLOC
OPER UNALLOC 'CYBER.PROC'
#2 Run IEBCOPY utility, see sample JCL below:
//COMPRESS EXEC PGM=IEBCOPY
//A DD DSNAME=CYBER.PROC,DISP=OLD
//B DD DSNAME=CYBER.PROC,DISP=OLD
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
COPY OUTDD=B,INDD=A