ORA-01652: 无法通过 128 (在表空间 TEMP 中) 扩展 temp 段(EXP-00056: 遇到 ORACLE 错误 1652 ORA-01652: unable to extend temp segment by 128 in tablespace TEMP)
Posted on 2014-07-09 14:10 季枫 阅读(2638) 评论(0) 收藏 举报数据库报 ORA-01652: 无法通过 128 (在表空间 TEMP 中) 扩展 temp 段
两种解决方式:
第一种)
sql>select * from v$tempfile;
发现temp01.dbf已经31G
决定清空temp表空间
步骤:
1、create temporary tablespace TEMP2 TEMPFILE '/X/temp02.dbf' SIZE 2048M ;
2、alter database default temporary tablespace TEMP2;
3、drop tablespace TEMP including contents and datafiles;
4、create temporary tablespace TEMP TEMPFILE '/X/temp01.dbf' SIZE 2048M REUSE
AUTOEXTEND on MAXSIZE 10240M;
5、alter database default temporary tablespace TEMP;
6、drop tablespace TEMP2 including contents and datafiles;
问题解决! 
浙公网安备 33010602011771号