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: copy data from one table to another

Re: copy data from one table to another

From: rok <rthumsi_at_cncx.com>
Date: 14 Aug 1998 20:56:58 PDT
Message-ID: <01bdc800$c89b0640$a1b59bcf@thumsi95.cncx.com>


Did you try using copy command in sql*plus:

copy from username/password
create table_to
using
select * from table_from;

raghuvir

Margaret Burwell <aj739_at_FreeNet.Carleton.CA> wrote in article <6qsnnh$raf_at_freenet-news.carleton.ca>...
>
> I want to copy all the data in table1 to an identical table called
table2.
> One of the columns is datatype LONG. I have tried
>
> create table table2 as select * from table1 ;
>
> and creating the table and then
>
> insert into table2 (select * from table1);
>
> Both of these give me ORA-00997: illegal use of LONG datatype. Does
> anyone have any suggestions?
>
> Marg
>
Received on Fri Aug 14 1998 - 22:56:58 CDT

Original text of this message

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