View previous topic :: View next topic |
Author |
Message |
jimmy_augustine Beginner
Joined: 23 Jun 2004 Posts: 32 Topics: 13
|
Posted: Thu Jul 08, 2004 5:28 am Post subject: WER255A VO242E Error |
|
|
Could anybody help me with this error ?
+WER255A VO242E ,INTERCAM,INTCAMLD-VSAM LOGICAL ERROR 08 ON OUTPUT
IEF450I VO242E INTCAMLD INTERCAM - ABEND=S000 U0016 REASON=00000000 745
Code: |
++INTCAMDF EXEC PGM=IDCAMS
++SYSPRINT DD SYSOUT=*
++SYSIN DD SUBSYS=(CCSS,
DELETE (BDV4LBV.UATTEST.CAM.C9999) PURGE
DEFINE CLUSTER -
(NAME(BDV4LBV.UATTEST.CAM.C9999) -
CYL (200 75) -
FOR (9999) -
RECSZ (202 202) -
KEYS (67 0) -
IMBED -
REPLICATE -
BUFFERSPACE(163840) -
FREESPACE (05 01) -
SPEED -
SHAREOPTIONS (2 3)) -
DATA -
(NAME(BDV4LBV.UATTEST.CAM.C9999.DATA) -
CISZ(32768)) -
INDEX -
(NAME(BDV4LBV.UATTEST.CAM.C9999.INDEX))
|
On checking for the error WER255A, this is what I could find.
****************** Text Below Copyright (c) 2004, SYNCSORT *******************
WER255A VSAM LOGICAL ERROR XX ON {INPUT, OUTPUT}
EXPLANATION: An error occurred while processing
a VSAM data set. For the definition of the
hexadecimal error number represented by xx, see
one of the following IBM publications:
o MVS/XA VSAM Administration: Macro Instruc-
tion Reference, CG26-4016.
o MVS/DFP Macro Instructions for Data Sets,
SC26-4747
o DFSMS/MVS Macro Instructions for Data Sets,
SC26-4913
Any help would be greately appreciated
Thanks a million
Jimmy |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Thu Jul 08, 2004 5:41 am Post subject: |
|
|
Jimmy,
Why do you have the SUBSYS parameter in the Sysin statement? Remove that and re-run the job.
Run the following Job.
Code: |
//INTCAMDF EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
DELETE (BDV4LBV.UATTEST.CAM.C9999) PURGE
DEFINE CLUSTER -
(NAME(BDV4LBV.UATTEST.CAM.C9999) -
CYL (200 75) -
FOR (9999) -
RECSZ (202 202) -
KEYS (67 0) -
IMBED -
REPLICATE -
BUFFERSPACE(163840) -
FREESPACE (05 01) -
SPEED -
SHAREOPTIONS (2 3)) -
DATA -
(NAME(BDV4LBV.UATTEST.CAM.C9999.DATA) -
CISZ(32768)) -
INDEX -
(NAME(BDV4LBV.UATTEST.CAM.C9999.INDEX))
|
Hope this helps..
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
jimmy_augustine Beginner
Joined: 23 Jun 2004 Posts: 32 Topics: 13
|
Posted: Thu Jul 08, 2004 5:48 am Post subject: |
|
|
Thanks Kolusu
Regards
Jimmy |
|
Back to top |
|
|
|
|