bala Beginner

Joined: 08 Dec 2005 Posts: 17 Topics: 6 Location: India
|
Posted: Mon Nov 13, 2006 6:23 am Post subject: FIXED OVERFLOW (PL/1) - VSAM RELATED ISSUE |
|
|
Hi,
This issue may be related with application programming (PL/1), but I thought this is related with VSAM file attributes.
>> Our production PL/1 code failed in READ step with the following error msg. during run time as IBM482I 'ONCODE'=0310 'FIXEDOVERFLOW' CONDITION RAISED.
Code: | READ statement from the pgm:
READ FILE(ATRIB) INTO(AT_REC) KEY(ATR_KEY) ;
Where ATRIB is a VSAM file.
ATR_KEY Pointing the following:
6 KEY,
7 ATRNUM BIN FIXED(15),
7 ATRVAL BIN FIXED(31),
7 LANG BIN FIXED(15) |
Our Solution: We had investigated that there was no issues in input which was a normal one. Also, we did not change any coding/inputs for our solution. Just we reorg'ed the vsam dataset and then we tried out the same program with same inputs it was completed successfully.
Before our reorg process VSAM file's "Retrieved records" count was 2147483647 (i.e. 2 ^31 -1). And, dataset had more than 1 million records. Was there any problem in this count (retr. records) which created issue with our PL code?
Please share your comments regarding this.
<< Working under VM/ESA 2.2.0 and OS/PL1 2.3.0>>
Regards, Bala |
|