Hi,
I have a stored proc that declares a string as VARCHAR2(32767) , I generate some htmlcode and mail it. Problem is my data has grown too large and now I am getting:
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
Is there a workaround for this that does not involve splitting my string into pieces?
Thanks