error occurred at recursive SQL level 1错误
今天plsql连数据库的时候,显示了这个错误,以前没见过
根据报错信息来看,原来有两种可能:
1,磁盘空间满了,无法自增;
2,表空间不足,已达到自增扩展的上限了
因为plsql登不上去,所以便看了下磁盘,发现确实E盘满了,空间耗尽,我是自己清理了一下E盘,然后数据库就能连上了
如果是表空间不足的话,就需要扩大表空间的大小,以下是查询语句,后期如果用到,可以执行查看:
select a.tablespace_name as "表空间名",
a.bytes / 1024 / 1024 as "表空间大小(M)",
(a.bytes - b.bytes) / 1024 / 1024 as "已使用空间(M)",
b.bytes / 1024 / 1024 "空闲空间(M)",
round(((a.bytes - b.bytes) / a.bytes) * 100, 2) "使用比"
from (select tablespace_name, sum(bytes) bytes
from dba_data_files
group by tablespace_name) a,
(select tablespace_name, sum(bytes) bytes, max(bytes) largest
from dba_free_space
group by tablespace_name) b
where a.tablespace_name = b.tablespace_name
order by ((a.bytes - b.bytes) / a.bytes) desc;
目前我的情况是第一种,后面如果遇到第二种情况,再具体补充。