create index IDX_ZY_FEIYONG1_ONE_JFID on ZY_FEIYONG1_ONE (JIFEIID)
ORA-01652: 无法通过 1024 (在表空间 TS_HIS3JE 中) 扩展 temp 段
在创建索引的时候老是报这个错误,google了半天,发现很多都是讲临时表的没有自动扩展,查看信息语句如下:
1.查看表空间使用率(包括临时表空间)
select * from (
Select a.tablespace_name,
to_char(a.bytes/1024/1024,'99,999.999') total_bytes,
to_char(b.bytes/1024/1024,'99,999.999') free_bytes,
to_char(a.bytes/1024/1024 - b.bytes/1024/1024,'99,999.999') use_bytes,
to_char((1 - b.bytes/a.bytes)*100,'99.99') || '%' use
from (select tablespace_name,
sum(bytes) bytes
from dba_data_files
group by tablespace_name) a,
(select tablespace_name,
sum(bytes) bytes
from dba_free_space
group by tablespace_name) b
where a.tablespace_name = b.tablespace_name
union all
select c.tablespace_name,
to_char(c.bytes/1024/1024,'99,999.999') total_bytes,
to_char( (c.bytes-d.bytes_used)/1024/1024,'99,999.999') free_bytes,
to_char(d.bytes_used/1024/1024,'99,999.999') use_bytes,
to_char(d.bytes_used*100/c.bytes,'99.99') || '%' use
from
(select tablespace_name,sum(bytes) bytes
from dba_temp_files group by tablespace_name) c,
(select tablespace_name,sum(bytes_cached) bytes_used
from v$temp_extent_pool group by tablespace_name) d
where c.tablespace_name = d.tablespace_name
)
order by tablespace_name
2.查看文件是否自动扩展
select d.file_name,d.tablespace_name,d.autoextensible from dba_data_files d
如果想查看临时表空间文件是否自动扩展
select d.file_name,d.tablespace_name,d.autoextensible from dba_temp_files d;
3.在检查表文件时 发现 表空间escalade使用率接近100%,且不可扩展
修改文件自动可扩展性
但是我发现自己的临时和使用的表空间都是可以自动扩展的,搞了半天,原来是放index的表空间空间不足了。于是我新增加了datafile就没有该错误了,寒一个!
参考网址:
http://jianglin.blog.51cto.com/676726/139508 解决ora-01652无法通过128(在temp表空间中)扩展temp段的过程(转载)
http://miniyal.itpub.net/post/38385/475101
http://www.itpub.net/thread-765197-1-1.html