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