1)某些表的数据被删除,不会减小表空间;
2)EXP IMP时,是否选择了TABLESPACES 参数?!

解决方案 »

  1.   

    1. 表空间可能有碎片,需要整理.
        alter tablespace TBSNAME coalesce 2. EXP时有没有使用compress选项? 使用这个选项可以解决 
       段的碎片问题.    EXP system/manager  file=exp.dmp  compress=y 
        grants=y indexes=y  tables=(t1,t2,t3)
                       
        imp system/manager file=exp.dmp commit=y
        buffer=1024000 full=y
        
     3. 表空间的存储参数不合理(initial,next,pctincrease等等)
      

  2.   

    1.delete删除数据,不会减少表空间,用Truncate命令可以减少表空间。
    2.表空间碎片需要处理