現象
import すると、ORA-01659 が発生する。
ORA-01659 unable to allocate MINEXTENTS beyond 27 in tablespace INDX
原因
表領域の空き容量不足。
対処
表領域のサイズを拡張して、import を再実行する。
--データファイルのサイズを拡張する場合 alter database datafile '/opt/oracle/oradata/orcl/index01.dbf' resize 2G; --データファイルを追加する場合 alter tablespace indx add datafile '/opt/oracle/oradata/orcl/index02.dbf' size 2G;