ORA-1652: unable to extend temp segment by 8 in tablespace错误

2014-11-24 18:23:11 · 作者: · 浏览: 0

ORA-1652: unable to extend temp segment by 8 in tablespace错误


在alert_SID.log出现下面错误:


Thu Aug 5 17:13:07 2010
ORA-1652: unable to extend temp segment by 8 in tablespace TEST
Thu Aug 5 17:31:58 2010
ORA-1652: unable to extend temp segment by 8 in tablespace TEST


Oracle:
fsize = -1
data = -1
stack = -1
core = -1


改变这文件之后,数据库重新启动则可以解决最大2GB,则最大值为32GB。


如果不能重启数据库,则可以在数据库中的该表空间中增加多一个数据文件来解决上面的问题。
如:
alter tablespace TEST
add datafile '/usr/oracle/oms/oradata/bgp/TEST02.dbf'
size 5M autoextend on