好象不可以
在user表空间建同样一个表,然后把system表空间的数据导入到user表空间
最笨的方法

解决方案 »

  1.   

    alter table table_name move tablespace user
      

  2.   

    支持楼上的
    alter table table_name move tablespace user
      

  3.   

    alter table table_name move tablespace user
    測試通過
      

  4.   

    Oracle分两类表空间,System表空间和非System表空间,System表空间是包含数据库的全部数据字典,存储过程、包、函数和触发器的定义以及系统回滚段;非System表空间主要是用来存放用户定义的数据的。
    可以用alter table .. move tablespace ..来处理