I have a procedure created in an external file as
create or replace procedure emp_select
is
begin
dbms_output.put_line('Hello World');
end;
/
It is run in sqlplus using
@ /pathtofile
It gives procedure created
But exec emp_select; only says procedure executed successfully, but no output on screen
set serveroutput on;first?