> -----Original Message----- > From: IBM Mainframe Discussion List > [mailto:[EMAIL PROTECTED] On Behalf Of HELIO > Sent: Thursday, March 06, 2008 8:24 AM > To: [email protected] > Subject: IEC614I SCRATCH FAILED > > > Hi > > I am running a job with the utility ADRDSSU to make a dump of > a data set > and after deletes it, the dump are running successfully, but > when will > delete the data set I am getting a message > > IEC614I SCRATCH FAILED - RC 008, DIAGNOSTIC INFORMATION IS (040942D1) > > Already looked in the manual and not found this diagnostic > information, > the data set is administered by SMS. > Who knows with me solve this problem. > > Thanks.
In the manual "z/OS: DFSMSdfp Diagnosis", section 6.15 on "DADSM SCRATCH Return and Diagnostic Codes". x'040942d1' breaks down as byte 0==4, byte 1==9, byte 2==VVDS1, byte 3=VVDS2. The "0409" says "VVDS detected and error". ref: http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/DGT2R160/6.15 Looking at x'42d1' in section 17.9.5.16, says "Catalog error while deleting dataset". ref: http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/DGT2R160/17.9 .5.16 Do you see any other error messages? Perhaps the dataset was somehow on the volume but either uncatalogued or catalogued in the wrong catalog? Have you tried printing the VVDS for this volume? Is there a record for this dataset in the VVDS? If so, what catalog is in the VVDS record? Is it the correct catalog? If you want to scratch the dataset, then I'd use IDCAMS and either the DELETE NVR (for nonVSAM) or DELETE VVR (for VSAM) command. <example type="NVR"> //JS010 EXEC PGM=IDCAMS //SYSPRINT DD SYSOUT=* //OTL002 DD DISP=OLD,UNIT=SYSALLDA,VOL=SER=OTL002 //SYSIN DD * DELETE - ( - ORATL.HERSCH - ) - NVR - FILE(OTL002) /* </example> -- John McKown Senior Systems Programmer HealthMarkets Keeping the Promise of Affordable Coverage Administrative Services Group Information Technology The information contained in this e-mail message may be privileged and/or confidential. It is for intended addressee(s) only. If you are not the intended recipient, you are hereby notified that any disclosure, reproduction, distribution or other use of this communication is strictly prohibited and could, in certain circumstances, be a criminal offense. If you have received this e-mail in error, please notify the sender by reply and delete this message without copying or disclosing it. ---------------------------------------------------------------------- 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

