If dbms_output.put_line('Hello World'); in your PL/SQL script does not work, you probably forgot to activate the output in your SQLPLUS.exe or SQL Developer!
To activate the output, enter the following command:
set serveroutput on
Now you can execute your function/procedure:
begin
dbms_output.put_line('Hello World');
end;
/
No comments:
Post a Comment
Your comment will be visible after approval.