Oracle数据库中快速转移数据的方法

  如果你要把Oracle里的大量数据(80M以上)转移到另外的用户,另外的表空间里。可以用下面介绍的快速转移数据的方法。

  一、建新表的方式
 
引用:
         create table target_tablename tablespace
         target_tablespace_name nologging
     pctfree 10 pctused 60
     storage(initial 5M next 5M minextents 1
         maxextents unlimited pctincrease 0)
     as select * from username.source_tablename where 条件;