DBMS_OUTPUT does not show any results
Hello everybody,
for debugging and exporting purposes I do need output from the DBMS_OUTPUT in SQL-Developer.
However in the employed version (Version 17.3.1.279) I do not get anything.
Simple Example:
SET SERVEROUTPUT ON;
BEGIN
SYS.DBMS_OUTPUT.ENABLE;
SYS.DBMS_OUTPUT.PUT_LINE(Systimestamp);
END;
/
If I try it on another machine with the Version18.4.0 it works just fine.
Installing a newer Version is unfortunately not possible as I do not have the rights to do that.
Do you have any suggestions?
Thank you in advance!