Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> DBMS_OUTPUT problem
I was writing the following plsql code under Oracle8i and got no output message. Can anyone tell me what went wrong? Thanks a lot!
SQL> begin
2 dbms_output.enable();
3 dbms_output.put_line('sdaf');
4 end;
5 /
PL/SQL procedure successfully completed.
mm