4

I have searched quite extensively on how to output messages in Oracle SQL. I have read a lot about dbms_output.put_line and dbms_output.get_line and tried using both but am unable to get either to work. Using Oracle SQL Developer Version 2.

MatthewMartin
  • 32,326
  • 33
  • 105
  • 164
Alex
  • 1,060
  • 2
  • 17
  • 35

1 Answers1

4

I'm not sure what application you're using, but, in general, to output the DBMS_OUTPUT buffer to your client, you first need to issue a SET SERVEROUTPUT ON.

See http://www.adp-gmbh.ch/ora/sqlplus/serveroutput.html.

Tebbe
  • 1,372
  • 9
  • 12