alter table tb1 default tablespace sp2;

解决方案 »

  1.   

    alter table t_name move tablespace new_tablespace;
      

  2.   

    alter table 表名 move tablespace SP2;
      

  3.   

    alter table t_name move tablespace sp2
    nologing;//不产生log可以加快重组速度.
      

  4.   

    若要把表的TABLE_id的索引改为另一个表空间该怎么做?
      

  5.   

    alter index index_name move tablespace tablespace_name
      

  6.   

    yown(yong):
    不行!
    出现“无效的 ALTER INDEX 或 ALTER SNAPSHOT 选项”的错误!
      

  7.   

    你可删除原索引,再建索引:create index index1 on stuff(name) tablespace tp1;