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 -> create table as select * takes one commit?

create table as select * takes one commit?

From: Ed Wong <ewong_at_mail.com>
Date: 21 Apr 2002 00:16:38 -0700
Message-ID: <a5ae1554.0204202316.67d897b7@posting.google.com>


I am looking into ways to copy a 10GB table. A easy way is to do: create tableb as select * from tablea;
or
create tableb as select /*+ APPEND +/ * from tablea;

Is it the same as DML that goes into rollback segment? I don't have 10GB of rbs and I don't want to increase my rbs just to do this.

Also, if I want to use the APPEND hint, do I need to say "insert /*+ APPEND */..." or I can simply do "create table /*+ APPEND */ ? What's the difference?

Thanks in advance.

ewong Received on Sun Apr 21 2002 - 02:16:38 CDT

Original text of this message

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