相关文章推荐
呐喊的李子  ·  <table>(表格元素) - ...·  1 月前    · 
任性的包子  ·  rsync ...·  1 年前    · 
严肃的围巾  ·  验证码_哔哩哔哩·  2 年前    · 
SQL> set serveroutput on
SQL> begin
2 dbms_output.put_line('------------output------------');
3 dbms_output.put_line('end--------------');
4 end;
5 /

------------output------------
end--------------

PL/SQL procedure successfully completed


SQL> begin
2 dbms_output.enable(100000);
3 dbms_output.put_line('test');
4 end;
5 /

test

PL/SQL procedure successfully completed