oracletemp表空间满了,怎么办?createtempfile

19分钟前阅读1回复0
yk
yk
  • 管理员
  • 注册排名3
  • 经验值296400
  • 级别管理员
  • 主题59280
  • 回复0
楼主
oracletemp表空间满了,怎么办?temp表空间过大时,可通过如下方法重建;drop tablespace temp;drop tablespace temp including contents and datafiles cascade constraints(彻底删除包括操作系统中的临时表空间的数据文件)。最后在操作系统上把temp的文件删除就可以释放空间

oracletemp表空间满了,怎么办?

oracletemp表空间满了,怎么办?createtempfile

temp表空间过大时,可通过如下方法重建 SQL> create temporary tablespace temp2 tempfile '/opt/oracle/oradata/conner/temp1.dbf' size 200M autoextend off; SQL> alter database default temporary tablespace temp2; SQL> drop tablespace temp; 或者SQL> drop tablespace temp including contents and datafiles cascade constraints(彻底删除包括操作系统中的临时表空间的数据文件) 最后在操作系统上把temp的文件删除,就可以释放空间。

0
回帖

oracletemp表空间满了,怎么办?createtempfile 期待您的回复!

取消