View previous topic :: View next topic |
Author |
Message |
vice_versa Beginner
Joined: 04 Nov 2005 Posts: 14 Topics: 10
|
Posted: Mon Aug 13, 2007 9:39 pm Post subject: delete VSAM error |
|
|
I want to delete Delete VSAM SYS1.MAN4.DATA
But report below information
thanks in advanced
IDC3012I ENTRY SYS1.MAN4.DATA NOT FOUND+
IDC0551I ** ENTRY SYS1.MAN4.DATA NOT DELETED
IDC0014I LASTCC=8 |
|
Back to top |
|
 |
dbzTHEdinosauer Supermod
Joined: 20 Oct 2006 Posts: 1411 Topics: 26 Location: germany
|
Posted: Tue Aug 14, 2007 4:20 am Post subject: |
|
|
what JCL did you use or ISPF Screen and what command did you use?
run a listcat and provide results, please
are you a systems programmer? _________________ Dick Brenholtz
American living in Varel, Germany |
|
Back to top |
|
 |
dubasir Beginner
Joined: 13 Dec 2004 Posts: 20 Topics: 9
|
Posted: Thu Aug 16, 2007 1:02 am Post subject: |
|
|
Try deleting SYS1.MAN4 not SYS1.MAN4.DATA |
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Thu Aug 16, 2007 8:11 am Post subject: |
|
|
My testing shows that the msg would be different if you try to delete the data component of a cluster: Code: | IDC2552I ENTRY TYPE IS INVALID FOR DELETE |
More likely the cluster is no longer cataloged. Try this:
Code: | //STEP01 EXEC PGM=IDCAMS
//*
//* DELETE VVR RECORDS NOT CONNECTED TO CATALOG ENTRIES
//*
//SYSPRINT DD SYSOUT=*
//DD1 DD UNIT=3390,VOL=SER=volser,DISP=SHR
//SYSIN DD *
DELETE (SYS1.MAN4.DATA ) -
FILE(DD1) -
VVR -
CATALOG(your.master.catname) |
_________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
 |
taltyman JCL Forum Moderator

Joined: 02 Dec 2002 Posts: 310 Topics: 8 Location: Texas
|
Posted: Thu Aug 16, 2007 9:02 am Post subject: |
|
|
Question from a curious person.
Is this an SMF dataset? |
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Thu Aug 16, 2007 10:41 am Post subject: |
|
|
The SMF naming convention certainly fits. We sometimes have these hanging around after a new system install. Perhaps vice versa has the same situation? _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
 |
expat Intermediate

Joined: 01 Mar 2007 Posts: 475 Topics: 9 Location: Welsh Wales
|
Posted: Thu Aug 16, 2007 11:58 am Post subject: |
|
|
The dataset may be in the alternate master catalog and not the current master catalog. I have come across this in the past. It may also be used in an alternate SYS1.PARMLIB. I have encountered this before where there was a current and fallback IPL volume, each with it's own master catalog, which in theory should be identical
Double check everything before deleting it using a CATALOG parameter in IDCAMS - asuming the alternate IPL volume is online. _________________ If it's true that we are here to help others,
then what exactly are the others here for ? |
|
Back to top |
|
 |
|
|