Answers for "oracle sql log to console"

SQL
0

oracle sql log to console

set serveroutput on format wrapped;
begin
    DBMS_OUTPUT.put_line('simple comment');
end;
/

-- do something

begin
    DBMS_OUTPUT.put_line('second simple comment');
end;
/
Posted by: Guest on March-12-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language