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: ASCII export of table contents

Re: ASCII export of table contents

From: MarkP28665 <markp28665_at_aol.com>
Date: 1997/01/20
Message-ID: <19970120154101.KAA24284@ladder01.news.aol.com>#1/1

From original note >>
Does anybody know how to export table contents in readable ASCII format (with delimiters or in fixed width format). Import is possible with sqlload but what about export ? <<
Try select * from table_name.

You can use the sql*plus column command to format the output along with

the commands:           set linesize xxx
                            set pagesize 0
You can then use sqlldr to restore the data. This works as long as you do not have long columns. It will work with long datatype columns if the actual data values are small enough to fit on a line. Received on Mon Jan 20 1997 - 00:00:00 CST

Original text of this message

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