My dbms output is not displayed

3

I'm testing a simple output of DBMS in SQLDeveloper. I created the connection, I executed set serveroutput on to enable the DBMS outputs, but when I run my anonymous code block, in Saída do Script it displays the message

  

PL / SQL procedure completed successfully.

But in the Saída Dbms window, even with my connection already added, nothing is displayed. This is the code I am trying to execute:

BEGIN
    DBMS_OUTPUT.ENABLE(2000);
    DBMS_OUTPUT.PUT_LINE('Curso Oracle PL/SQL');
END;

    
asked by anonymous 27.11.2017 / 17:56

2 answers

0

I did the test just opening a connection to DBMS output (before running the script) as you did, and in mine it worked.

    
08.05.2018 / 21:13
-2

First run only this line:

set serveroutput on

Then delete it and set it as normal.

    
03.05.2018 / 17:05