Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Silly little sqlplus question :)
Billy wrote:
> grz02 wrote:
>
> > Now, my problem is that the output file will have a blank line
> > before each row of output, i.e:
>
> Actually is a linefeed between result sets - thus a linefeed after each
> command submitted by SQL*Plus to Oracle.
>
> One way around it is to UNION ALL the separate SELECT statements - but
> that may not be possible (different projections cannot be unioned).
>
> If there is a SQL*Plus command that allows this linefeed to be
> dynamically enabled and disabled, I would like to know too.
>
set recsep off
to turn it off, and
set recsep wrap
to put it back to default.
Hth
-- mjbReceived on Sat Jul 09 2005 - 14:48:48 CDT
![]() |
![]() |