ORA-01688:unable to extend table name.name partition NAME by NUM in tablespace NAME

生原因:指定的tablespace空间已经被占用满,无法扩展。

解决方法:使用“ALTER TABLESPACE ADD DATAFILE”命令增加文件系统文件和原始分区,或者增加INITIAL的大小(如:alter tablespace CDRS101 default storage(next 500M pctincrease 1))应该能够解决,否则就是有人使用你的表空间上创建了一个比较大的数据文件导致你的表空间不够用。

一个报错例子如下:

ORA-1688: unable to extend table RMMCDR.LOCAL_CDR partition LOCAL_CDR101 by 460800 in tablespace CDRS101

相应的英文如下:

Cause: An extent could not be allocated for a table segment in tablespace

Action: Use the ALTER TABLESPACE ADD DATAFILE statement to add one or more files to the specified tablespace


你可能感兴趣的:(ORA-01688:unable to extend table name.name partition NAME by NUM in tablespace NAME)