Use ASCII sequence for LF or CR+LF (ascii 10 and 13):
SQL> begin
2 dbms_output.put_line(sysdate);
3 dbms_output.put(CHR(10));
4 dbms_output.put_line(sysdate);
5 end;
6 /
28.09.01
28.09.01
PL/SQL procedure successfully completed.
If you are doing this in SQL*Plus then you can use the following setting:
SET SERVEROUTPUT ON FORMAT WRAPPED
SQL> set serveroutput on format wrapped
SQL> begin
2 dbms_output.put_line(sysdate);
3 dbms_output.put_line('');
4 dbms_output.put_line(sysdate);
5 end;
6 /
28.09.01
28.09.01
PL/SQL procedure successfully completed.
Jurij Modic
ASCII a stupid question, get a stupid ANSI
24 hours in a day .... 24 beer in a case .... coincidence?
Bookmarks