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 -> Re: SQL*Loader

Re: SQL*Loader

From: Uchakra <uchakra_at_aol.com>
Date: 16 Feb 2001 04:17:26 GMT
Message-ID: <20010215231726.04907.00000244@ng-cd1.aol.com>

Following is an example of creating
a comma delimied text file for
data from emp table consissting of
two fields : empno and emplname

spool emp.txt
set heading off etc.

select empno||','||emplname from emp ;
spool oof

Of course, utl_fil package is much more
powerful if one wants to do a little
PL/SQL programming to create the text file.

Regrads
Willy Received on Thu Feb 15 2001 - 22:17:26 CST

Original text of this message

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