Problem
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at line 23
Cause
a varchar2(2000);
Action
FIXED by changing how I declared the variable “a” to:
a varchar2(9000);
Note
Change the declared variable according to your requirements.
Comments
Tags: Character string buffer too small, numeric or value error, Ora Error, ORA-06502, ORA-06502 : PL/SQL, Oracle DBA, Oracle Developer, oracle error, Oracle numeric, Oracle numeric or value error, Oracle Solution, Oracle value error, Solution for ORA-06502