I have an oracle stored procedure which has output to the users in the form of
DBMS_OUTPUT.PUT_LINE('....');
I run the stored procedure through .sql file in sqlplus and none of the output messages of the stored procedures are being shown in sqlplus command window. How could I get the outputs to show in the command window?
Thanks,