开发者

Print equivalent on Oracle PLSQL

开发者 https://www.devze.com 2023-01-11 11:54 出处:网络
When you开发者_Python百科 execute the following block in Oracle SQL Developer set serveroutput on format wraped;

When you开发者_Python百科 execute the following block in Oracle SQL Developer

set serveroutput on format wraped;
begin
  DBMS_OUTPUT.put_line('the quick brown fox jumps over the lazy dog');
end;

You get the following response

anonymous block completed
the quick brown fox jumps over the lazy dog

I am basically trying to use PRINT so I can track progress in my PLSQL code.

How do I get rid of the uber-annoying anonymous block completed?


set feedback off

should suppress the message

0

精彩评论

暂无评论...
验证码 换一张
取 消