Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何启用 iSQL*Plus 终端将输出打印到屏幕?
例如一个简单的 hello world 块:
注意“hello world”应该如何打印到屏幕上,但只确认没有编译错误。
您需要启用 dbms outout 并设置服务器输出。
exec dbms_output.enable(1000000);
并在您的程序顶部粘贴以下内容:
set serveroutput on