Hi My colleague exported a file
/**************************************************/
/* VERIFY */
/**************************************************/
VERIFY DATASET(SYSU.$RGG.DB)
/**************************************************/
/* EXPORT */
/**************************************************/
EXPORT SYSU.$RGG.DB TEMP -
INFILE(KSDS) OUTFILE(TKSDS)
/**************************************************/
/* DEFINE - FORCE WITH REQVOL TO USE OUR VOLUME */
and then defined a new cluster and alter the name of the new file to current and then imported it
IMPORT INTOEMPTY -
INFILE(TKSDS) OUTFILE(KSDS)
and got these errors:
IMPORT INTOEMPTY -
INFILE(TKSDS) OUTFILE(KSDS)
IDC0604I DATA SET BEING IMPORTED WAS EXPORTED ON 06/12/11 AT 00:36:28
IGD17800I VOLUME VDR002 DEFINITION NOT FOUND
FOR DATA SET SYSU.$RGG.DB
IGD306I UNEXPECTED ERROR DURING IGDCNS01 PROCESSING
RETURN CODE 5002 REASON CODE 0
THE MODULE THAT DETECTED THE ERROR IS IGDVTSCH
SMS MODULE TRACE BACK - VTSCH VTSCF VTSCD VTSCC VTSCR SSIRT
SYMPTOM RECORD CREATED, PROBLEM ID IS IGD00701
IGD17219I UNABLE TO CONTINUE DEFINE OF DATA SET
SYSU.$RGG.DB
IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12
Now what I think we are doing wrong is we are importing it and we should use NOERASE and INTOEMPTY with this IMPORT. But the define has a comment saying use FORCE with REQVOL parameter now I saw the syntax and their is no such parameter like force or REQVOL in the IDCAMS define. Suggestions please.