Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Stripping of spaces in SQL Plus
Hi,
> You may want to use DBMS_OUTPUT package. I's much more flexible way to
> write to a file then spooling from SQL*Plus. See Oracle7.3 Server
> Developers Guide.
Another problem here:
dbms_output.put_line and dbms_output.new_line ,
they are trim leading spaces. :) At least, with RDBMS 7.1.6
But you still can use the trick if you need indents:
dbms_output.put('something'); -- in previous line dbms_output.put(chr(10)||' anything, supposed to beindented');
That's something.
WBW, Igor. Received on Sat Mar 29 1997 - 00:00:00 CST
![]() |
![]() |