Connecting Tech Pros Worldwide Help | Site Map

How to unload data

Julia Sats
Guest
 
Posts: n/a
#1: Jun 27 '08
Hi,

Oracle contains SQL*Loader for loading data to Oracle.
Does exis any tool for quickly unload (extract data) from Oracle's table to
TXT file, preferable to comma separete format.

I can use for it UTL_FILE but I need to work with every record of the table.

Thanks


Ana C. Dent
Guest
 
Posts: n/a
#2: Jun 27 '08

re: How to unload data


Julia Sats wrote:
Quote:
Hi,
>
Oracle contains SQL*Loader for loading data to Oracle.
Does exis any tool for quickly unload (extract data) from Oracle's table to
TXT file, preferable to comma separete format.
>
I can use for it UTL_FILE but I need to work with every record of the table.
What wrong with SQL*Plus or Read The Fine Archives
where this question has been asked & answer NUMERSOUS
times recently.

Daniel Morgan
Guest
 
Posts: n/a
#3: Jun 27 '08

re: How to unload data


Julia Sats wrote:
Quote:
>Hi,
>
>Oracle contains SQL*Loader for loading data to Oracle.
>Does exis any tool for quickly unload (extract data) from Oracle's table to
>TXT file, preferable to comma separete format.
>
>I can use for it UTL_FILE but I need to work with every record of the table.
>
>Thanks
>
>
>
spool

--
Daniel Morgan
http://www.outreach.washington.edu/e...ad/oad_crs.asp
http://www.outreach.washington.edu/e...oa/aoa_crs.asp
damorgan@x.washington.edu
(replace 'x' with a 'u' to reply)

paul sun
Guest
 
Posts: n/a
#4: Jun 27 '08

re: How to unload data


if you have MS Access, it will be quite simple. go to access----
select open, select ODBC as source, put the table(s) you want to
export into the access.---choose export option from access---then
simply following the wizard to finish the rest.

good luck!


"Julia Sats" <julia.sats@sympatico.cawrote in message news:<Pqw5b.8890$Kj.919894@news20.bellglobal.com>. ..
Quote:
Hi,
>
Oracle contains SQL*Loader for loading data to Oracle.
Does exis any tool for quickly unload (extract data) from Oracle's table to
TXT file, preferable to comma separete format.
>
I can use for it UTL_FILE but I need to work with every record of the table.
>
Thanks
Turkbear
Guest
 
Posts: n/a
#5: Jun 27 '08

re: How to unload data


jsun@staffordbc.gov.uk (paul sun) wrote:
Quote:
>if you have MS Access, it will be quite simple. go to access----
>select open, select ODBC as source, put the table(s) you want to
>export into the access.---choose export option from access---then
>simply following the wizard to finish the rest.
>
>good luck!
>
>
>"Julia Sats" <julia.sats@sympatico.cawrote in message news:<Pqw5b.8890$Kj.919894@news20.bellglobal.com>. ..
Quote:
>Hi,
>>
>Oracle contains SQL*Loader for loading data to Oracle.
>Does exis any tool for quickly unload (extract data) from Oracle's table to
>TXT file, preferable to comma separete format.
>>
>I can use for it UTL_FILE but I need to work with every record of the table.
>>
>Thanks
Or, to avoid reading the data twice, look into the SPOOL command and create your file from SqlPlus:

Example follows ( not to be actually used as it is not precise or the best way and, of course yours will vary)
set heading off
set lines 1000
set pagesize 0
set termout off
set feedback off
spool "c:\mydir\datatable.csv"
set colsep ","
select * from mytable;
spool off





Closed Thread


Similar Oracle Database bytes