Hi ora User,
you can use
DBMS_OUTPUT.ENABLE (
buffer_size IN INTEGER DEFAULT 20000); to increase the buffer and this will buy you some more time to get this error because the maximum size of the buffer is 1,000,000 .
If you have too many debugging statement so you will get error once you exceed the 1000000 Limit.
so the best practice is to call
DBMS_OUTPUT.DISABLE in between. This will purge your all old buffer.
Thanks
Mohit
Main Topics
Browse All Topics





by: SANALPosted on 2003-02-28 at 14:45:24ID: 8045187
i don't remember of any.
but u can increase the buffer size
buy calling the enable proc.
DBMS_OUTPUT.ENABLE (
buffer_size IN INTEGER DEFAULT 20000);
~Sanal