您的位置:首页 > 数据库 > Oracle

ORA-01652: 无法通过 128 (在表空间 TEMP 中) 扩展 temp 段(EXP-00056: 遇到 ORACLE 错误 1652 ORA-01652: unable to extend temp segment by 128 in tablespace TEMP)

2014-07-09 14:10 871 查看
数据库报 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;

问题解决!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: