View - SARSTC24 message received, View processing stopped
search cancel

View - SARSTC24 message received, View processing stopped

book

Article ID: 234828

calendar_today

Updated On:

Products

View

Issue/Introduction

We have set up a View database with the following parameter:

//SARINIT1 EXEC PGM=SARINIT                                        
//STEPLIB  DD  DSN=VIEW.CVDELOAD,DISP=SHR               
//SYSPRINT DD  SYSOUT=*                                            
//SYSIN    DD  *                                                   
NAME=view_hlq
PRETAIN=TABLE                                                      
//*                                                

However, it's still keeping on disk some outputs, making the DISK get a 100% usage.
After IPL the following message has been received:

11 R SCG1     *11 SARSTC24  No more space in database OB.MV - Reply R (retry), B (backup), N (new), C (clean), OR T (terminate)                                

We tried the backup option (B) and then the N (new), but neither worked.

Can you please advise what to do?

Environment

Release : 14.0

Component :

Resolution

The problem stemmed from the client's ERO table containing the following:

/IMS3RDR DRETPD=1 RETPD=5
/RIMSRDR DRETPD=1 RETPD=5
/IMSTRDR DRETPD=1 RETPD=5
/BPXAS     DRETPD=1 RETPD=5
/* ALL DRETPD=1 RETPD=2560

As a result, reports IMS3RDR, RIMSRDR, IMSTRDR and BPXAS were retained longer on disk than were reports under the "catch all" entry (/*).

It was suggested that the client change their ERO table to the following:

/IMS3RDR ALL DRETPD=1 RETPD=5
/RIMSRDR ALL DRETPD=1 RETPD=5
/IMSTRDR ALL DRETPD=1 RETPD=5
/BPXAS     ALL DRETPD=1 RETPD=5
/* ALL DRETPD=1 RETPD=2560

With the inclusion of the "ALL" field in the other ERO table entries, the reports on the database and reports newly coming in were retained on disk as expected.