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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Sql loader loads - what is the name of the counterpart that exports

RE: Sql loader loads - what is the name of the counterpart that exports

From: Bob Metelsky <bmetelsky_at_cps92.com>
Date: Thu, 05 Sep 2002 12:53:18 -0800
Message-ID: <F001.004C90E2.20020905125318@fatcity.com>


set heading off
set pagesize 0
set linesize 200
set feedback off
set termout on

select '"'|| e.empno || '",'

	|| '"' || e.mgr  || '",'
	|| '"' || e.deptno || '",'

from emp e where rownum <=10 ;

> It's called SQL Plus. Set the heading off, pagesize = 0,
> linesize = 200, set record delimiter = ',' or '|' and set
> feedback off; and termout on. This should produce an ASCII
> file once you supply your own query.
>
> RWB
>
>
>

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Bob Metelsky
  INET: bmetelsky_at_cps92.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Thu Sep 05 2002 - 15:53:18 CDT

Original text of this message

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