SashaBuilder3
Programmer
Hi everybody,
In one of my procedures I output some info for a debugging purpose. Here is the line:
DBMS_OUTPUT.put_line(my_msg);
'my_msg' is of VARCHAR2 type, it is assigned not more than 6 bytes at a time.
The line is used in a loop about 350 iterations. When I run the proc in SQL*PlusWorksheet I get at some point (around 100 iterations) an error message:
ORA-20000: ORU-10027: buffer overflow, limit of 2000 bytes
As I said this line is for debugging only and if I comment it out the whole procedure works OK.
Can anyone tell me what's going on?
Thanks,
Alexandre
In one of my procedures I output some info for a debugging purpose. Here is the line:
DBMS_OUTPUT.put_line(my_msg);
'my_msg' is of VARCHAR2 type, it is assigned not more than 6 bytes at a time.
The line is used in a loop about 350 iterations. When I run the proc in SQL*PlusWorksheet I get at some point (around 100 iterations) an error message:
ORA-20000: ORU-10027: buffer overflow, limit of 2000 bytes
As I said this line is for debugging only and if I comment it out the whole procedure works OK.
Can anyone tell me what's going on?
Thanks,
Alexandre