第一步:
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://blog.51cto.com/lya041/768096
Oracle临时表空间管理
本文介绍了如何使用Oracle数据库命令来管理临时表空间,包括删除、创建及调整临时文件的大小,并展示了如何查看临时表空间的状态。
1159

被折叠的 条评论
为什么被折叠?



