Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PL/SQL - ORA-06502 Error

Status
Not open for further replies.

wellster34

Programmer
Sep 4, 2001
113
0
0
CA
Hi,

I have a PL/SQL script and I keep getting the ORA-06502 error everytime I try to fetch my cursor.

I have looked at the description and I have gone over the code. I found nothing that appears to be causing the error.

Any ideas on how to debug this?

Thanks
 
The error message is:

Sqlcode is -6502
Error Message is ORA-06502: PL/SQL: numeric or value error: character string buffer too small

After looking over this code for 2 hours... I finally found the error. I had a variable with a limit of char of 40 and I was assigning it a value greater than 40 characters long.

I feel stupid. I should of found that error earlier. The error message was not that descriptive of where the error occurred. Lesson learned on my part.
 
This one happens a lot - the trick then becomes to figure out WHICH buffer is too small!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top