Hi,
I am getting this error when i run a stored procedure from my asp page.
Error: ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at "default.asp", line 107 ORA-06512: at line 1
in my stored procedure i have a variable 'sname' to which i concat string. if the string length exceeds a particular length then i get this error else it the procedure work fine
example
ssubject := 'This is what error i am getting when i run'
sname := 'hi how are u doing here' || ssubject
if i change the lenght of any one variable then it works fine
example
ssubject := 'This is what error'
sname := 'hi how are u doing here' || ssubject
Can anyone help me with this.
I would really appreciate it.
Thanks
sudhir
I am getting this error when i run a stored procedure from my asp page.
Error: ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at "default.asp", line 107 ORA-06512: at line 1
in my stored procedure i have a variable 'sname' to which i concat string. if the string length exceeds a particular length then i get this error else it the procedure work fine
example
ssubject := 'This is what error i am getting when i run'
sname := 'hi how are u doing here' || ssubject
if i change the lenght of any one variable then it works fine
example
ssubject := 'This is what error'
sname := 'hi how are u doing here' || ssubject
Can anyone help me with this.
I would really appreciate it.
Thanks
sudhir