I have made the simple example:
CREATE OR REPLACE PROCEDURE greetings
AS
BEGIN
dbms_output.put_line('Hello World!');
END;
and then in SQL Developer do:
EXECUTE GREETINGS;
---------
PL/SQL procedure successfully completed.
Why I do not see the output?