ORA-01654: unable to extend index

后端 未结 2 1382
终归单人心
终归单人心 2020-12-29 22:42

Calling all Oracle Gurus!

I am in the process of clustering a well tested application on WebSphere. The application in question made it about half way through proces

2条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-29 23:19

    You are out of disk space.

    Increase your TABLESPACE:

    ALTER TABLESPACE DABUAT_TBLSP
    ADD DATAFILE 'C:\FolderWithPlentyOfSpace\DABUAT_TBLSP001.DBF' 
    SIZE 4M
    AUTOEXTEND ON NEXT 4M
    MAXSIZE 64G;
    
    -- Put your own size parameters here
    

提交回复
热议问题