hi,

wondering if there's anyway to set serveroutput on or something similar with a procedure ? i want to be able to
dbms_output.put_line without having to rely on the user to
issue set serveroutput on (i know it can be done w/ login on each individual client -> trying to avoid this).

thanks!

create or replace procedure this_proc (n number) as
<>
begin
<>
end;