ORA-03232: unable to allocate an extent of 127 blocks from tablespace 3
tablespace 3 是temp表空间
NEXT 64K我是否可以直接改为 NEXT 1M
听说temp表空间不能直接改?要重建?

解决方案 »

  1.   

    ALTER TABLESPACE temp
    DEFAULT STORAGE
    (
        INITIAL 5M
        NEXT 5M
        MINEXTENTS 1
        MAXEXTENTS 2046
        PCTINCREASE 0
    );
    这样写对不对?
      

  2.   

    alter tablespace temp
    default storage (initial n
                     next m
                     maxsize .....)