7

When executing the following code, it just says the procedure is completed and doesn't print the infomation .

BEGIN
 dbms_output.put_line('This is my first program');
END;
/

When I execute the above code the compiler says , PL/SQL procedure successfully completed but doesn't print anything to the console . What can I do ?

osimer pothe
  • 2,827
  • 14
  • 54
  • 92

1 Answers1

19

Switch the serveroutput on by

Set serveroutput on 
GrandMasterFlush
  • 6,269
  • 19
  • 81
  • 104
osimer pothe
  • 2,827
  • 14
  • 54
  • 92