6.7 C
Vancouver
Tuesday, April 16, 2024

ORA-01654: unable to extend index

Must read

Database can’t extent an index.

Problem

ORA-01654: unable to extend index SYS.I_FILE#_BLOCK# by 128 in tablespace SYSTEM

Solution

Check the size and maxsize of the data files in the SYSTEM tablespace

select file_name, bytes, autoextensible, maxbytes
from dba_data_files
where tablespace_name=’SYSTEM’;

Increase the size of the data file;

alter database datafile ‘<Path to data file>’ resize <larger size>

More articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest article