Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: dbms_output.put_line question

Re: dbms_output.put_line question

From: Ian Cary <cary_at_gatwick.geco-prakla.slb.com>
Date: 1997/08/20
Message-ID: <33FAD4AA.77F@gatwick.geco-prakla.slb.com>#1/1

In 7.3.3 you can use the command

set serverout on size 1000000 format wrapped

but I guess that isn't much use to you on v7.1.4

What I have tended to do on that version is either use chr(9) to print a preceeding tab or chr(1) to print a non-printable character (this may not always be non-printable on some machines) to stop dbms_output from ltrimming leading spaces.

e.g.

dbms_output.put_line(chr(9)||' text string');

Hope this helps,

Ian Received on Wed Aug 20 1997 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US