【发布时间】:2010-08-10 13:20:35
【问题描述】:
当您在 Oracle SQL Developer 中执行以下代码块时
set serveroutput on format wraped;
begin
DBMS_OUTPUT.put_line('the quick brown fox jumps over the lazy dog');
end;
你得到以下响应
anonymous block completed
the quick brown fox jumps over the lazy dog
我基本上是在尝试使用 PRINT,以便跟踪我的 PLSQL 代码的进度。
如何摆脱烦人的anonymous block completed?
【问题讨论】: