473,657 Members | 2,800 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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
Jul 19 '05 #1
6 31242
Julia Sats wrote:
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.

Jul 19 '05 #2
Julia Sats wrote:
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
da******@x.wash ington.edu
(replace 'x' with a 'u' to reply)

Jul 19 '05 #3
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" <ju********@sym patico.ca> wrote in message news:<Pq******* ***********@new s20.bellglobal. com>...
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

Jul 19 '05 #4
js**@staffordbc .gov.uk (paul sun) wrote:
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" <ju********@sym patico.ca> wrote in message news:<Pq******* ***********@new s20.bellglobal. com>...
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\datat able.csv"
set colsep ","
select * from mytable;
spool off

Jul 19 '05 #5
dbaman
1 New Member
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

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
Sep 11 '05 #6
oracle12345
1 New Member
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

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
Oct 9 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2424
by: dbaman | last post by:
You need to unload data into portable text files Use spool in oracle tounload. If Oracle tables are large,then you can try fastreader www.wisdomforce.com fastreader willautomatically create data loader to DB2
2
1814
by: shabnam via DBMonster.com | last post by:
I 'm using DB2 ver6,I want to transfer data from DB2 tables to dataset at OS390,how can I do it? regards -- Message posted via http://www.dbmonster.com
4
10025
by: JAW | last post by:
I have some tables on DB2 Z/OS 7.1 with SMALLINT, DECIMAL, TIMESTAMP, DATE and CHAR datatypes. I already have unload utilities crafted so I would just like to unload some data on Z/OS for about 10 tables and then load them on the Windows Server which runs DB2 UDB 8.2 . My issue of course is with the NON-CHAR conversion. Will using ASCII operand on Z/OS unload utility and then FTP'ing to
0
1318
by: mick | last post by:
I'm trying to unload a table with one blob field. TEMPLATE LOBFRV DSN '&USERID.&DB..&TS..PIC' DSNTYPE(PDS) UNIT(SYSDA) UNLOAD DATA FROM TABLE USERID.TLOB (PIC VARCHAR(255) BLOBF LOBFRV) SHRLEVEL CHANGE
11
8637
by: Timofmars | last post by:
I'm try to Unload DB2 data from a table into a record sequential file on NT. I can an unload on Mainframe, but it doesn't seem to be an option in NT. In NT, all I can do is export/import. I can do a Load too, but not an Unload. I just want the only the data from the table in a record sequential file. Export seems only to give options to have a delimited line sequential file or a record sequential file where the data is preceeded by...
0
1734
by: JAW | last post by:
UNLOAD DATA FROM TABLE user.table SHRLEVEL CHANGE ISOLATION UR DELIMITED I am attempting variations of the above command. The table has columns defined as CHAR so they are padded with blanks.
0
1158
by: Sam Durai | last post by:
hello, I am trying to unload data from my table on DB2 or z/OS but it fails with the following reason. Could you please help me on this? Since I am new to DB2 z/OS please correct me if I am wrong The unload command which I used is as below SET CURRENT SQLID='IBMGRP' UNLOAD TABLESPACE IBMDB.IBMTS FROM TABLE VIJ_TAB2;
4
221
by: Julia Sats | last post by:
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
1963
by: tonik | last post by:
I want to unload data from table in oracle to table in anothe database,for example DB2 Can you help me with a sample code thanks
0
8403
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8833
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8737
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8610
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7345
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6174
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5636
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4327
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1730
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.