> -----Original Message----- > From: IBM Mainframe Discussion List > [mailto:[EMAIL PROTECTED] On Behalf Of Fernando Archila Ruiz > Sent: Friday, May 26, 2006 10:47 AM > To: [email protected] > Subject: LOGREC DATASET IS FULL -- Z/OS 1.2 > > > Does any one could help me with this..... > > When my Z/OS 1.2 became up this message appeared in MVS console > > *09.51.23 *IFB081I LOGREC DATA SET IS FULL, 09.51.23 > > I have tried to run teh CLRLGREC job that some manuals say that is in > LVL0.PROCLIB.., but in this machine do not exists. > > Could be another way to resolve this issue? > > Thanks in advance for any information further. > > -- > Fernando Archila-Ruiz
Run one of the following JCL: //STEP1 EXEC PGM=IFCDIP00 //SERERDS DD DSN=sys1.logrec, // DISP=SHR This simply reformats the LOGREC dataset. You may need to replace "sys1.logrec" with the correct data set name. Oh, and make it upper case. SYS1.LOGREC (upper case) is the default name. You will loose all your LOGREC data. You can "offload" the LOGREC with a step like: //STEP1 EXEC PGM=IFCOFFLD //SERLOG DD DSN=sys1.logrec,DISP=OLD //ACCDEV DD DSN=offload.dataset,DISP=(NEW,CATLG), // UNIT=SYSALLDA,SPACE=(CYL,(200,100),RLSE), // RECFM=VB,BLKSIZE= //TOURIST DD SYSOUT=* //EREPPT DD SYSOUT=* //SYSIN DD DUMMY Read more at: http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/Shelves/IFC5BK05 -- John McKown Senior Systems Programmer HealthMarkets Keeping the Promise of Affordable Coverage Administrative Services Group Information Technology This message (including any attachments) contains confidential information intended for a specific individual and purpose, and its content is protected by law. If you are not the intended recipient, you should delete this message and are hereby notified that any disclosure, copying, or distribution of this transmission, or taking any action based on it, is strictly prohibited. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

