Oracle: SET SERVEROUTPUT ON with Toad

I put SET SERVEROUTPUT ON SIZE UNLIMITED FORMAT WRAPPED ; in glogin.sql , but Toad does not seem to use this configuration. In other words, the following PL \ SQL wpuldntt output:

BEGIN DBMS_OUTPUT.PUT_LINE('Hello World'); END; 

How can I make Toad Auto show PL \ SQL output? Thanks

+7
oracle
source share
1 answer

glogin.sql is a script that automatically runs SQL Plus; as far as I know, Toad does not run this script. Toad has a “DBMS Output” panel at the bottom of the editor window and a red button in the upper left corner of the panel to enable output.

+7
source share

All Articles