Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Quick sqlplus cr/lf question
> you don't have any sql posted that includes chr(10), so that problem can't
> be diagnoses
Ah yes - well, I tried _exactly_ what you had suggested, including the pipes. Here's the line I used, and the result:
--SELECT STATEMENT
select '*********************' || chr(10) ||, 'TRAINING SLICE COUNTS' || chr(10) ||, '*********************' || chr(10)from dual;
select '*********************' || chr(10) ||, *
BUT - the 'prompt' works, and does make more sense. Thanks for that.
> not sure waht you mean by _both_ defined headers or what you mean by
> pagebreak headers
As to the headers: here is what I _want_ to see:
Owner Table USER1 USER2 ---------- ------------------------------ ----------- ---------- SCHEMA1 TB_ACCOUNT 189 194 SCHEMA2 TB_ACCOUNTINFO 189 194 .
SCHEMA1 TB_ACCOUNT 189 194 SCHEMA2 TB_ACCOUNTINFO 189 194 . .
This is not a BIG deal, and I'll take the repeating headers over no headers. But ideally, for the purposes of my reporting, I would like to see them once - ONLY once. ;) Received on Fri Aug 04 2006 - 12:46:18 CDT