DBMS Output tab doesn't work

Guiar

Member
I can't get to work the DBMS Output tab, I have compiled stored procedure using

dbms_output.enable;
dbms_output.put_line()
dbms_output.disable;

...and nothing shows up on the DBMS Output window

What am I missing?

Your help will appreciated

Thanks
 
Hi,
the line 'dbms_output.disable' disable the calls of dbms_output.put_line.
If you leave it out, then it will working.

You don't need also dbms_output.enable. You use enable to size the dbms_output buffer.

Greetings.
Daniel
 
Back
Top