代码之家  ›  专栏  ›  技术社区  ›  Raj More

在Oracle PLSQL上打印等价项

  •  0
  • Raj More  · 技术社区  · 14 年前

    在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代码中跟踪进度。

    我如何摆脱uber anonymous block completed ?

    1 回复  |  直到 14 年前
        1
  •  9
  •   dpbradley    14 年前
    set feedback off
    

    应该抑制该消息