ORA-03232 unable to allocate an extent of string blocks from tablespace stringCause: An attempt was made to specify a HASH_MULTIBLOCK_IO_COUNT value that is greater than the tablespace's NEXT value.Action: Increase the value of NEXT for the tablespace using ALTER TABLESPACE DEFAULT STORAGE or decrease the value of HASH_ MULTIBLOCK_IO_COUNT.

解决方案 »

  1.   

    temp可以重建,重建后得给用户重新指定temporary tablespace
    否则,oracle会把system作为用户的临时表空间,给你造成不必要的麻烦~
    可以先在自己的机器上做一下实验,(先做备份)
      

  2.   

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