解决Oracle Temp01.dbf不断变大的问题

第一步:
alter database tempfile 'F:\oracle\product\10.1.0\oradata\orcl\TEMP01.DBF' drop;

第二步:
alter tablespace temp add tempfile
'F:\oracle\product\10.1.0\oradata\orcl\TEMP01.DBF'
size 2048M reuse autoextend on next 100M;

第三步:
select d.file_name, d.file_id, d.tablespace_name, d.bytes
from dba_temp_files d;

第四步:
alter database tempfile 'F:\oracle\product\10.1.0\oradata\orcl\TEMP01.DBF' autoextend off;

原文地址:https://www.cnblogs.com/davidgu/p/1580833.html