ORA-01654: unable to extend index

后端 未结 2 1380
终归单人心
终归单人心 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
    
    0 讨论(0)
  • 2020-12-29 23:22

    IF you are using ASM then you can add with below comment

    you can run below command to get size of datafile

    SELECT
        file_name,
        bytes / 1024 / 1024 mb
    FROM
        dba_data_files
    WHERE
        tablespace_name = 'APP_DATA'
    ORDER BY
        file_name;
    
    
    FILE_NAME mb
    ------------------------------------------------------------ -------
    +DATA/SID/datafile/app_data.dbf 20000
    +DATA/SID/datafile/app_data.dbf 28100
    

    Resizing and adding

    +DATA/path/indx_operational_00.dbf
    
    alter database datafile '+DATA/path/indx_operational_00.dbf' resize 3000m;
    
    0 讨论(0)
提交回复
热议问题