*U11D-8200-5 SSN=CAL7 DBID=0601 Area=IXX at 80% used. What is required to address this error?
The CA 11 STC will generate a U11D-8200-5 message once any database file reach a designated threshold, based on its ‘DBWARN=’ configuration file setting. If the area is identified as the IXX, a DEFRAG should be performed.
Note: The DEFRAG option can only be used for the IXX601.
The following DBUTLTY can be submitted to reclaim the unused space.
//DBDEFRAG JOB ...
//***************************************************************************************
//*
//* SAMPLE DEFRAG OF THE CA 11 DATABASE INDEX
//*
//* THIS JOB PERFORMS AN ONLINE COMPRESS OF THE INDEX FOR THE
//* CA 11 DATABASE USING THE CA DATACOM DBUTLTY PROGRAM.
//*
//* THIS JOB CAN BE RUN WHILE THE CA 11 DATABASE IS OPEN AND
//* ACTIVE.
//*
//* THIS JOB WILL:
//* 1. REFRESH CXX DISK-BASED STATISTICS
//* 2. RUN A CXX TYPE=A REPORT ON DBID 601
//* 3. DEFRAGMENT THE INDEX BLOCKS
//* 4. REFRESH THE CXX STATISTICS AGAIN
//* 5. PRODUCE A FINAL CXX TYPE=A REPORT
//**************************************************************************************
//*
//* SET CUS=YOUR DATACOM CUSLIB
//* SET CAI=YOUR DATACOM CAILIB (r11.0) OR CAAXLOAD (V12.0 or later)
//* SET CXX=YOUR CXX FILE NAME
//*
//DEFRAG EXEC PGM=DBUTLTY,REGION=4M
//STEPLIB DD DISP=SHR,DSN=&CUS
// DD DISP=SHR,DSN=&CAI
//SYSPRINT DD SYSOUT=*
//CXX DD DISP=SHR,DSN=&CXX
//SYSIN DD *
COMM DBID=601,OPTION=STATS
REPORT DBID=601,AREA=CXX,TYPE=A
DEFRAG DBID=601
COMM DBID=601,OPTION=STATS
REPORT DBID=601,AREA=CXX,TYPE=A
/*
//
After running the DEFRAG utility, if you would like to increase the space in the IXX601, you may issue the Datacom DYNAMIC_EXTEND command or run the attached DBALLOC 601 job.
Below is an example of the command syntax issued via DBUTLTY COMM statement to extend the IXX by 50 cylinders:
//SYSIN DD *
COMM OPTION=CONSOLE,OPTION2='DYNAMIC_EXTEND 601,IXX,50,CYL'
/*
Below is an example of the console command to the MUF:
/F mufstc,,DYNAMIC_EXTEND 601,IXX,50,CYL