Why do you think the import connect succeeded? The listing shows that there already was a catalog entry for SYS1.IODF11.WORK and any attempt to add another should have failed due to duplication. Have you attempted a LISTCAT specifying SYS1.IODF11.WORK as the catalog name?
SYS1.IODF11.WORK is not the dataset name. It is the name of the data component of a VSAM dataset. The true DSN is shown in the ASSOCIATIONS section of your listing. The simplest solution might be to dump and delete the cluster with ADRDSSU, cleanup any extraneous catalog entries referencing SYS1.IODF11.WORK, and then restore the dataset. > -----Original Message----- > From: IBM Mainframe Discussion List [mailto:[email protected]] On > Behalf Of venkat kulkarni > Sent: Monday, September 29, 2014 6:37 AM > To: [email protected] > Subject: Catalog issue > > > > > Hello Group, > > By mistake somebody from our team run below Job, > > which has cataloged SYS1.IODF11.WORK file into master catalog as user > > catalog. > > > > //IMPCONET JOB 'VENKAT',CLASS=A,MSGCLASS=A,NOTIFY=&SYSUID > > //IMPORT EXEC PGM=IDCAMS > > //SYSPRINT DD SYSOUT=* > > //SYSIN DD * > > IMPORT - > > CONNECT - > > OBJECTS((SYS1.IODF11.WORK - > > VOLUMES(WORK01) - > > DEVT(3390))) - > > CATALOG(SYS1.MASTER.CATALOG) > > > > But, to isolate this issue, I run below Job to disconnect this > > SYS1.IODF11.WORK file from > > the master catalog. > > > > //IMPDISCT JOB 'VENKAT',CLASS=A,MSGCLASS=A,NOTIFY=&SYSUID > > //STEP1 EXEC PGM=IDCAMS > > //SYSPRINT DD SYSOUT=* > > //SYSIN DD * > > EXPORT - > > SYS1.IODF11.WORK - > > DISCONNECT - > > CATALOG(SYS1.MASTER.CATALOG) > > > > But I encountered below error > > > > IDCAMS SYSTEM SERVICES TIME: > > > > EXPORT - > > SYS1.IODF11.WORK - > > DISCONNECT - > > CATALOG(SYS1.MASTER.CATALOG) > > IDC3014I CATALOG ERROR > > IDC3009I ** VSAM CATALOG RETURN CODE IS 10 - REASON CODE IS > IGG0CLFK-14 > > IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12 > > > > IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE > WAS 12 > > > > > > I looked into RETURN code 10 and reason code 14 > > > > *14**Explanation:* On a disconnect request, the connector record was > > missing or incorrect. > > > > > > Any clue to resolve this issue. > > > > IDCAMS output for this > > IDCAMS SYSTEM SERVICES TIME: > 23:11:16 > > /* IDCAMS COMMAND */ > LISTCAT ENTRIES(SYS1.IODF11.WORK) - > ALL > DATA ---------- SYS1.IODF11.WORK > IN-CAT ---SYS1.MASTER.CATALOG > HISTORY > DATASET-OWNER-----(NULL) CREATION--------2014.267 > RELEASE----------------2 EXPIRATION------0000.000 > ACCOUNT-INFO-----------------------------------(NULL) > PROTECTION-PSWD-----(NULL) RACF----------------(NO) > ASSOCIATIONS > CLUSTER--SYS1.IODF11.WORK.CLUSTER > ATTRIBUTES > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, > send email to [email protected] with the message: INFO IBM-MAIN ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
