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 -> [SQL*Plus] Delimitting with pipe characters is possible?

[SQL*Plus] Delimitting with pipe characters is possible?

From: aleatory <aleatory_at_hotmail.com>
Date: 23 Nov 2003 19:10:13 -0800
Message-ID: <a68a4ee0.0311231910.37d3ad90@posting.google.com>


Hi SQL*Plus gurus,

It would help my life tremendously if there is a way to set delimiters in SQL*Plus.

The following is what I'd like to hopefully get after executing my SQL*Plus programs.(Please note that I need no column headers but just plain pipedelimited  data):

|1|0|
|2|0|
|3|0|
|4|0|
|5|0|
|6|0|
|7|SYSTEM|5|
|8|USERA|21|
However, the following is the output after executing the SQL code below:

| SQL> SELECT sid,
| 2 username,
| 3 user#
| 4 FROM v$session;
|
| SID USERNAME USER#
| --- -------- -----
| 1 0
| 2 0
| 3 0
| 4 0
| 5 0
| 6 0
| 7 SYSTEM 5
| 8 USERA 21
Thanks in advance,

alea Received on Sun Nov 23 2003 - 21:10:13 CST

Original text of this message

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