1.嘗試一下:
alter table tabName move online tablespace tabSpaceName
2.exp/imp

解决方案 »

  1.   

    connect user2/pass2
    create table t2 as select * from user1.t1;
      

  2.   

    1。如果是同一个数据库,
       用 create table t1 as select * from user1.t1;
    2。如果是在同一个数据库或是不同数据库
       用
         EXP USER/PASSWD FILE=T1.DAT TABLES=T1
       
         IMP USER2/PASSWD2 FILE=T1.DAT FULL=Y
      

  3.   

    可以用exp用户模式导出,然后再导入另外一个用户模式
    exp system/manager file=<dmpfile> owner=<user1>imp system/manager file=<dmpfile> fromuser=<user1> touser=<user2>
      

  4.   

    用exp/imp实现最好exp有个tables得参数,可以指定导出的表
      

  5.   

    不同数据库COPY FROM user_1/password@database_1
    TO user_2/password@databse_2
    CREATE NEW_table(DEPARTMENT_ID, DEPARTMENT_NAME, CITY) 
    USING SELECT * FROM old_table同一个数据库
    copy from user_1/password@database to user_2/password@database create t_table using select * from t_table_1