第一步:
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;

相关文章:

  • 2021-12-16
  • 2021-07-06
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2021-11-26
  • 2022-12-23
  • 2022-01-05
猜你喜欢
  • 2021-10-17
  • 2021-09-14
  • 2021-10-22
  • 2021-06-29
  • 2021-07-20
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案