ORA-01688: unable to extend table ,这个错误表明表空间使用率满,查看提示的表对应利用率;设置自动扩展或者增大容量。
(1)查看日志提示的表名
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space
from dba_data_files
order by tablespace_name
(2) 解决的三种方式
增大文件表空间
alter database datafile 'xx.dbf' resize 100m
增加文件个数
alter tablespace 表名 add datafile 'xx.dbf' size 100m
设置自动扩展表满
alter database datafile 'xx.dbf' autoextend on next 100m maxsize 1000m标签:100m,jdbc,name,01688,dbf,xx,tablespace,ORA From: https://www.cnblogs.com/chillymint/p/16890343.html