Connecting Tech Pros Worldwide Help | Site Map

How to unload data

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 19th, 2005, 09:05 PM
Julia Sats
Guest
 
Posts: n/a
Default How to unload data

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, 09:05 PM
Ana C. Dent
Guest
 
Posts: n/a
Default 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, 09:05 PM
Daniel Morgan
Guest
 
Posts: n/a
Default 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, 09:08 PM
paul sun
Guest
 
Posts: n/a
Default 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, 09:08 PM
Turkbear
Guest
 
Posts: n/a
Default 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, 06:59 AM
Newbie
 
Join Date: Sep 2005
Age: 43
Posts: 1
Default How to unload Oracle 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, 03:53 AM
Newbie
 
Join Date: Oct 2005
Age: 36
Posts: 1
Default quickly unload rom Oracle's table to

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
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,662 network members.