View previous topic :: View next topic
|
Author |
Message |
Praveen Kumar Kolar
New User
Joined: 18 Mar 2021 Posts: 31 Location: India
|
|
|
|
Hi Team,
I working on a project to migrate the data from OLD VTS to NEW VTS using CA Copycat utility. The copycat jobs for single volser datasets are getting failed very regularly with the same issue.
[IKJ56893I DATA SET BKP.B8ZT.MONTHTBL.G0105V00 NOT ALLOCATED+
IGD17100I UNEXPECTED CATALOG ERROR FOR DATA SET
BKP.B8ZT.MONTHTBL.G0105V00
RETURN CODE IS 8 REASON CODE IS 8 IGG0CLEH
CTC5306E Job PKCPYS01, return code 16 in copy function step.
CTC7001E Dynamic allocation of CO100001 reason code 970C
CTC1015E RC=16 from CTSCPYM0 ]
970C
Meaning: Severe SMS VTOC service error.
I have opened a case with CA Broadcom and they are guessing the issue might be with ACS routines.
Someone please help me solve this issue.
Regards,
Praveen |
|
Back to top |
|
|
Joerg.Findeisen
Senior Member
Joined: 15 Aug 2015 Posts: 1329 Location: Bamberg, Germany
|
|
|
|
Please show the DD:SYSIN statements you are using for the CC FILECOPY function. |
|
Back to top |
|
|
Praveen Kumar Kolar
New User
Joined: 18 Mar 2021 Posts: 31 Location: India
|
|
|
|
Hi Joerg,
Please find the sysin statements below,
Code: |
FILECOPY
MERGE=NO
INUNIT=3490
OUTUNIT=3490
COMP=YES
FILES=ALL
RECATLG=ALL
SAVEINFO=YES
INDISP=RETPD=1
OUTDISP=SAME
USEREXIT=NO
SORT=NO
INPUT=*
BA1943
|
|
|
Back to top |
|
|
Joerg.Findeisen
Senior Member
Joined: 15 Aug 2015 Posts: 1329 Location: Bamberg, Germany
|
|
|
|
Look up for:
|
|
Back to top |
|
|
Praveen Kumar Kolar
New User
Joined: 18 Mar 2021 Posts: 31 Location: India
|
|
|
|
Hi Joerg,
The job failed with same error with RECATLG=PREV .
Code: |
FILECOPY
MERGE=NO
INUNIT=3490
OUTUNIT=3490
COMP=YES
FILES=ALL
RECATLG=PREV
SAVEINFO=YES
INDISP=RETPD=1
OUTDISP=SAME
USEREXIT=NO
SORT=NO
INPUT=*,VOL=1
BA1943
[quote]
IKJ56893I DATA SET BKP.B8ZT.MONTHTBL.G0105V00 NOT ALLOCATED+
IGD17100I UNEXPECTED CATALOG ERROR FOR DATA SET
BKP.B8ZT.MONTHTBL.G0105V00
RETURN CODE IS 8 REASON CODE IS 8 IGG0CLEH
CTC5306E Job PK$Z1L41, return code 16 in copy function step.
[/quote] |
|
|
Back to top |
|
|
Pete Wilson
Active Member
Joined: 31 Dec 2009 Posts: 589 Location: London
|
|
|
|
The IGD17100I message points to IDC3009I with RSN=8,RTN=8 which indicates you're trying to create a dataset name that already exists which is not allowed if they're to be cataloged.
8 Explanation: A request to place a record by key into a catalog resulted in a duplicate key error from VSAM.
Are you specifying the absolute generation number on the output DD? Are you using the wrong restart parm's? Usually you would code BKP.B8ZT.MONTHTBL(+1) to create a new generation. Or if you genuinely want to copy it you would need to specify a different target dataset name if you want it to be cataloged. Otherwise you'd have to create the new copy as uncataloged. |
|
Back to top |
|
|
|