现在的位置: 首页 > 综合 > 正文

ORA-01652: 无法通过 128 (在表空间 TEMP 中) 扩展 temp 段

2013年09月21日 ⁄ 综合 ⁄ 共 600字 ⁄ 字号 评论关闭

两种解决方式:

 

第一种) 

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;

问题解决! ORA-01652: <wbr>无法通过 <wbr>128 <wbr>(在表空间 <wbr>TEMP <wbr>中) <wbr>扩展 <wbr>temp <wbr>段

 

 

第二种)

增加正在操作的表所在的tablespace空间!


本文转自:http://blog.sina.com.cn/s/blog_5d3e96e701010vcz.html

抱歉!评论已关闭.