Normally, in SQL Developer, if one does, let's say, INSERT statement, then there is an output in Script output:
insert into a (a) values (1);
1 rows inserted.
If, then, we compile it into procedure:
create or replace procedure testp as
begin
insert into a (a) values (1);
end;
PROCEDURE TESTP compiled
and make call to it:
execute testp
anonymous block completed
There is no output about how many rows were inserted. How then, can we turn on detailed output in procedure?