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

Home -> Community -> Usenet -> c.d.o.misc -> Re: SQL to Dump rows to ASCII comma delimited File

Re: SQL to Dump rows to ASCII comma delimited File

From: Jerry Gitomer <jgitomer_at_hbsrx.com>
Date: Wed, 28 Jul 1999 09:41:16 -0400
Message-ID: <7nn180$o5q$1@autumn.news.rcn.net>


SET COLSEP ','
SPOOL filename
SELECT * FROM table;
SPOOL OFF
SET COLSEP ' ' michael laffety wrote in message ...
>Hi all,
>
>Does anyone have an SQL script that will dump select rows from a
table to a
>ASCII comma delimited File for subsequent processing by SQL
loader. Thanks
>in advance.
>
>Michael
>
>
Received on Wed Jul 28 1999 - 08:41:16 CDT

Original text of this message

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