Job fails with $RS8Q09 QUEUE FULL, ONE OR MORE DATASETS NOT QUEUED
search cancel

Job fails with $RS8Q09 QUEUE FULL, ONE OR MORE DATASETS NOT QUEUED

book

Article ID: 255607

calendar_today

Updated On:

Products

ASM2 Backup and Restore

Issue/Introduction

Running $RSVP to collect datasets for archiving, this would be for Explicit Archives. 

Job failed with $RS8Q09 QUEUE FULL, ONE OR MORE DATASETS NOT QUEUED 

Environment

Release : 4.2

Cause

The failure is caused by the $ARQUEUE filling up. The customer is attempting to add more entries than the current queue is formatted for.

Resolution

Sample JCL to reformat the queue with a larger number of entries, in this case 13,441 records

//DELTE    EXEC PGM=IDCAMS                                     
//SYSPRINT  DD SYSOUT=*                                        
//SYSIN DD *                                                   
 DEL 'your old    $ARQUEUE' PURGE                          
 DEL 'your old    $RAQUEUE' PURGE                          
 SET MAXCC=0                                                   
//FMTQS   EXEC  PGM=$FORMAT                                    
//STEPLIB   DD  DISP=SHR,DSN=your current  ASM2.CAILIB            
//SYSPRINT  DD  SYSOUT=*                                       
//***********************************************************  
//* ALLOCATE AND FORMAT A NEW ARCH/BKUP QUEUE DATASET       *  
//*                  13,441 RECORDS                         *  
//***********************************************************  
//ARCHBKLG DD  DSN=your new ASM2.$ARQUEUE,                   
//             SPACE=(CYL,(5),,CONTIG),                        
//             DCB=(RECFM=F,LRECL=7680,BLKSIZE=15360),         
//             UNIT=3390,VOL=SER=vvvvvv,                       
//             DISP=(,CATLG,DELETE)                            
//***********************************************************  
//* ALLOCATE AND FORMAT A NEW ARCH/BKUP RELOAD QUEUE        *  
//***********************************************************  
//$RXQUEUE DD  DSN=your new ASM2.$RAQUEUE,                   
//            SPACE=(CYL,(5),,CONTIG),                         
//            DCB=(RECFM=F,LRECL=7680,BLKSIZE=15360),          
//            UNIT=3390,VOL=SER=vvvvvv,                        
//            DISP=(,CATLG,DELETE)