I'm not able to see the messages added to dbms_output.put_line() in PL/SQL Developer. Every google hit I see says to use set serveroutput on but this isn't working.
I try to run this script in a SQL Window:
set serveroutput on;
BEGIN
dbms_output.put_line('hello')
END
But I get an error on the set serveroutput on line:
And I get no output in the Output tab (regardless of whether I have the set serveroutput on):
How can I see the output sent to dbms_output.put_line('hello') in a script run in an SQL Window?
Thank you.



