Connecting Tech Pros Worldwide Help | Site Map

How to unload data

  #1  
Old July 19th, 2005, 10:05 PM
Julia Sats
Guest
 
Posts: n/a
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


  #2  
Old July 19th, 2005, 10:05 PM
Ana C. Dent
Guest
 
Posts: n/a

re: How to unload data


Julia Sats wrote:[color=blue]
> 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.[/color]

What wrong with SQL*Plus or Read The Fine Archives
where this question has been asked & answer NUMERSOUS
times recently.

  #3  
Old July 19th, 2005, 10:05 PM
Daniel Morgan
Guest
 
Posts: n/a

re: How to unload data


Julia Sats wrote:
[color=blue]
>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
>
>
>[/color]
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)

  #4  
Old July 19th, 2005, 10:08 PM
paul sun
Guest
 
Posts: n/a

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.ca> wrote in message news:<Pqw5b.8890$Kj.919894@news20.bellglobal.com>. ..[color=blue]
> 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[/color]
  #5  
Old July 19th, 2005, 10:08 PM
Turkbear
Guest
 
Posts: n/a

re: How to unload data


jsun@staffordbc.gov.uk (paul sun) wrote:
[color=blue]
>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.ca> wrote in message news:<Pqw5b.8890$Kj.919894@news20.bellglobal.com>. ..[color=green]
>> 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[/color][/color]

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





  #6  
Old September 11th, 2005, 07:59 AM
Newbie
 
Join Date: Sep 2005
Posts: 1

re: How to unload data


I am using Fastreader from wisdomforce to unload data into txt comma delimited format. fastreader is fast and also creates loaders. can be found here: wisdomforce.com

Quote:
Originally Posted by Julia Sats
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
  #7  
Old October 9th, 2005, 04:53 AM
Newbie
 
Join Date: Oct 2005
Posts: 1

re: How to unload data


We also using Fastreader for unload data from our large Oracle tables into txt file. We use csv format

fastreader description is at wisdomforce : www.wisdomforce.com

The nice thing about fastreader it has fast compression on the fly (how they called). When data is extracted it is automatically compressed using their compressor feature. Thus output is relatively small and can be quickly transfered to destination server were it unzipped

Quote:
Originally Posted by Julia Sats
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
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
dllimport to unload dll Dan Holmes answers 3 July 15th, 2008 09:55 PM
Unload data tonik answers 2 June 27th, 2008 08:02 PM
How to unload data Julia Sats answers 4 June 27th, 2008 06:14 PM
unload data on DB2 Z/OS to DB2 UDB on Windows JAW answers 4 November 12th, 2005 11:42 AM