G Guiar Member Nov 11, 2004 #1 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
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
Daniel Thei Member Nov 12, 2004 #1 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
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