Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DBMS_OUTPUT.PUT_LINE not printing anything [duplicate]

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 ?

like image 232
osimer pothe Avatar asked Nov 28 '15 12:11

osimer pothe


1 Answers

Switch the serveroutput on by

Set serveroutput on 
like image 52
osimer pothe Avatar answered Oct 22 '22 18:10

osimer pothe