Tab character in dbms_output window adds blank line

Worker

Member³
When running the following code in a test window, the dbms_output window displays extra blank lines:

Code:
begin
  dbms_output.put_line( '[' || CHR(9) || ']' );
  dbms_output.put_line( '[' || CHR(9) || ']' );
end;
Running this in a command window (with serveroutput on) does not produce the blank lines. Nor does any other character other than tab.
 
Back
Top