PL/SQL output formatting
As seen in the output window
old:declare
num1 int;
begin
num1:= &enter_num1;
dbms_output.put_line(num1);
end;
new:declare
num1 int;
begin
num1:= 102;
dbms_output.put_line(num1);
end;
102
PL/SQL procedure successfully completed.
is shown, but I want only
102
PL/SQL procedure successfully completed.
to be shown. Any Suggestions.....