Buffer Size of dbms_output

mike

Member³
On the test window, the default buffer size for dbms_output is 10,000. Until now, that is way more than plenty.

I have one test that outputs more though. I have to remember to increase the buffer each time I run the test. Is there a way to have the increased amount stick, or am I stuck?

Thanks,
Mike
 
You can also define it in your test window - test script - using:
dbms_output.enable(10000);
This setting seems to take precedence over the one defined in the "DBMS Output" tab.
 
Back
Top