View previous topic :: View next topic |
Author |
Message |
mwdazzo Beginner
Joined: 15 Mar 2005 Posts: 36 Topics: 20
|
Posted: Thu Jan 24, 2008 11:33 am Post subject: Catalog Delete |
|
|
I have a user catalog that is cataloged to a volume that no longer exists. I have tried to delete the entry using the following jcl and other variations with no success. Any help is appreicated, thanks.
//JS10 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
DELETE -
CATALOG.Z17MCAT -
PURGE -
USERCATALOG |
|
Back to top |
|
|
Bill Dennis Advanced
Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Thu Jan 24, 2008 2:42 pm Post subject: |
|
|
User catalogs are really cataloged within themselves. The other catalogs just have "connections". Remove the catalog entry (and alias entries) like this:
Code: | EXPORT CATALOG.Z17MCAT DISCONNECT -
CATALOG(catalog.containing.the.entry) |
_________________ 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 |
|
|
mwdazzo Beginner
Joined: 15 Mar 2005 Posts: 36 Topics: 20
|
Posted: Fri Jan 25, 2008 9:02 am Post subject: Catalog Delete |
|
|
Thank you, worked like a charm. |
|
Back to top |
|
|
|
|