IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

VSAM error MAXIMUM ERROR LIMIT REACHED


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
vpr_118
Warnings : 1

New User


Joined: 07 Apr 2008
Posts: 64
Location: chennai

PostPosted: Mon Apr 06, 2009 1:20 pm
Reply with quote

Hi,

I am testing a JCL.

The job runs fine all days except the month end. Below is the error which i am getting. Is this a space issue. What should be done yo avoid this.

IDC3302I ACTION ERROR ON aaaa.bbbb.vsam.file
I/O RETURN CODE IS 28 - RPLFDBWD = X'2908001C'
IDC31467I MAXIMUM ERROR LIMIT REACHED.
SARPAGE 13
IDCAMS SYSTEM SERVICES
IDC0005I NUMBER OF RECORDS PROCESSED WAS 2174850
IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12

IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 12
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Mon Apr 06, 2009 1:56 pm
Reply with quote

Unless you post the actual error codes and messages no one will have a clue as to why the error occurs.

Phsycic day is Wednesday this week.
Back to top
View user's profile Send private message
vpr_118
Warnings : 1

New User


Joined: 07 Apr 2008
Posts: 64
Location: chennai

PostPosted: Mon Apr 06, 2009 2:36 pm
Reply with quote

Hi,

aaaa.bbbb.vsam.file is a VSAM file. I am trying to repro this from a flat file.

Please find the information furnished below.
. /* =-=-=-=- DELETE EXISTING FILES, IF THEY EXIST =-=-=-=- */
. DELETE aaaa.bbbb.vsam.file CLUSTER
.IDC0550I ENTRY (D) aaaa.bbbb.vsam.file.DATA DELETED
.IDC0550I ENTRY (I) aaaa.bbbb.vsam.file.INDEX DELETED
.IDC0550I ENTRY (C) aaaa.bbbb.vsam.file DELETED
.IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 0
.
.
. /* =-=-=-=- SET CONDITION CODE TO 0 DEFINE WILL WORK =-=-=-=- */
. SET LASTCC=0
.
. SET MAXCC=0
.
.
. /* =-=-=-=- NOW DEFINE THE CLUSTER =-=-=-=- */
. DEFINE CLUSTER ( NAME(aaaa.bbbb.vsam.file) -
. RECORDSIZE(80 80) -
. KEYS(9 16) TRACKS (1500 500) -
. SHAREOPTIONS(2 3) SPEED IMBED -
. ) -
. DATA ( NAME(aaaa.bbbb.vsam.file.DATA) -
. CONTROLINTERVALSIZE(4096) -
. FREESPACE(10 1) -
. ) -
. INDEX ( NAME(aaaa.bbbb.vsam.file.INDEX) -
. )
.IDC0508I DATA ALLOCATION STATUS FOR VOLUME V1XFAH IS 0
.IDC0509I INDEX ALLOCATION STATUS FOR VOLUME V1XFAH IS 0
.IDC0181I STORAGECLASS USED IS SCMPER00
.IDC0181I MANAGEMENTCLASS USED IS MCPRD000
.IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 0
.
.
. /* =-=-=-=- CONDITIONALLY LOAD THE FILE =-=-=-=- */
. IF LASTCC=0 THEN
.
. REPRO INFILE(OLD) OUTDATASET(aaaa.bbbb.vsam.file)
.IDC3302I ACTION ERROR ON aaaa.bbbb.vsam.file
.IDC3351I ** VSAM I/O RETURN CODE IS 28 - RPLFDBWD = X'2908001C'
.IDC31467I MAXIMUM ERROR LIMIT REACHED.
.SARPAGE 13
.IDCAMS SYSTEM SERVICES
.IDC0005I NUMBER OF RECORDS PROCESSED WAS 2174850
.IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12
.
.IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 12


The job runs successfully almost all days except on monthends. On monthends i get the above mentioned error i.e RC 12.
There is a messgae "MAXIMUM ERROR LIMIT REACHED and TOTAL number of records processed is 2174850. T
he job has ACTUALLY run fine for records more than the 2174850.
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Mon Apr 06, 2009 2:40 pm
Reply with quote

And what does IDC3351I tell you.
Back to top
View user's profile Send private message
vpr_118
Warnings : 1

New User


Joined: 07 Apr 2008
Posts: 64
Location: chennai

PostPosted: Mon Apr 06, 2009 2:48 pm
Reply with quote

Data set cannot be extended because VSAM cannot allocate
additional direct-access storage space. Either there is not
enough space left to make the secondary allocation request,
you attempted to increase the size of a data set while
processing with SHROPT=4 and DISP=SHR, or the index CI is
not large enough to hold the entire CA. This error could
also be due to a data set trying to extend beyond 4GB on a
system that does not support extended addressability.

But why does it not sun successfully on month end.

Is incresing a space a solution.

Or running the job again with out any changes is a solution?
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Mon Apr 06, 2009 3:18 pm
Reply with quote

vpr_118 wrote:
1) But why does it not sun successfully on month end.
2) Is incresing a space a solution.
3) Or running the job again with out any changes is a solution?

1) As I know absolutely nothing about the application how on earth do you expect an answer to that. I could guess, but that probably wouldn't help you.

2) Have you tried and seen the results

3) Possibly, but that depends on the original cause of the problem.

What you need to do is to identify the cause of the problem and then take the remedial action appropriate.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts Access to non cataloged VSAM file JCL & VSAM 18
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
No new posts VB to VB copy - Full length reached SYNCSORT 8
Search our Forums:

Back to Top