ORA-01652: 无法通过 128 (在表空间 TEMP 中) 扩展 temp 段
1、报错信息
ORA-01652: 无法通过 128 (在表空间 TEMP 中) 扩展 temp 段
2、原因
临时表空间满了
3、解决办法
3.1 添加临时表空间的数据文件
alter tablespace TEST_TEMP add datafile '+DATA/ZYGLZXDB/F5324C63FB43C214E0536E9ECE0A6F9E/TEMPFILE/test_temp_01.dbf' size 30g;
注意:临时表空间的数据文件用tempfile ,而不是datafile
3.2 重启数据库释放表空间
登录oracle用户,依次执行以下命令
sqlplus '/as sysdba'
shutdown immediate;
startup;
select 1 from dual;
4、拓展-与临时表空间相关的语句
--查询用户所使用的临时表空间:
select username,default_tablespace,temporary_tablespace from dba_users;
--查询临时表空间大小以及使用率:
select tablespace_name, bytes, user_bytes, user_bytes/bytes,file_name from dba_temp_files;
--查询临时文件是否在线:
select name,status from v$tempfile;
--修改临时文件在线(离线)状态:
alter database tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP02.DBF' online(offline);
--增加临时文件大小(增加原文件):
alter database tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP01.DBF' resize 100m;
--通过增加新的临时文件,来扩大临时表空间:
alter tablespace temp add tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP02.DBF' size 4000m;
--删除临时文件:
alter database tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP02.DBF' drop;
--将临时文件设置为自动扩展:
alter database tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP01.DBF' autoextend on next 5m maxsize unlimited;
--添加临时表空间的数据文件:
alter tablespace TEST_TEMP add datafile '+DATA/ZYGLZXDB/F5324C63FB43C214E0536E9ECE0A6F9E/TEMPFILE/test_temp_03.dbf' size 30g;
--修改为自动扩展
alter database datafile '+DATA/ZYGLZXDB/F5324C63FB43C214E0536E9ECE0A6F9E/TEMPFILE/test_temp_03.dbf' autoextend on;
--关闭(启动)临时文件的自动增长:
alter database tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP01.DBF' autoextend off(on);
5.解决方法
5.1 查看表空间使用情况
SELECT
*
FROM
(
SELECT
a.tablespace_name,
round( a.bytes / 1024 / 1024, 2 ) total_bytes,
round( b.bytes / 1024 / 1024, 2 ) free_bytes,
round( a.bytes / 1024 / 1024 - b.bytes / 1024 / 1024, 2 ) use_bytes,
round(( 1 - b.bytes / a.bytes ) * 100, 2 ) || '%' 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,
round( c.bytes / 1024 / 1024, 2 ) total_bytes,
round( ( c.bytes - d.bytes_used ) / 1024 / 1024, 2 ) free_bytes,
round( d.bytes_used / 1024 / 1024, 2 ) use_bytes,
round( d.bytes_used * 100 / c.bytes, 2 ) || '%' 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;
5.2 查看表空间大小、位置、空间使用情况、空间拓展性
select *
from (
select tablespace_name, file_id, file_name, round(bytes/(1024*1024),0) total_space, round(maxbytes/(1024*1024),0) maxbytes_space, autoextensible from dba_data_files
union all
select tablespace_name, file_id, file_name, round(bytes/(1024*1024),0) total_space, round(maxbytes/(1024*1024),0) maxbytes_space, autoextensible from dba_temp_files
) a
order by tablespace_name,file_id;
5.3 为表空间增加文件
alter tablespace temp add tempfile 'E:/ORADATA/NCENVIRO/temp05.dbf' size 2048M reuse autoextend on next 100M;