Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> Re: Coping Data From One Table To Another

Re: Coping Data From One Table To Another

From: n <patelnayan_at_yahoo.com>
Date: 14 Jul 2001 20:01:38 -0700
Message-ID: <e9046cdc.0107141901.fb197c1@posting.google.com>

> >
> > create table Pictures
> > (
> > pictureId varchar(70),
> > picture long raw
> > );

try something like

create table new_table as (select * from pictures); and than delete the Pictures table
and use rename command or something, just look it up in Oracle's documentation, its in there somewhere,
hope it helped,
thanks
take care Received on Sat Jul 14 2001 - 22:01:38 CDT

Original text of this message

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