Oracle temp 临时表空间爆满 处理。

为什么80%的码农都做不了架构师?>>>   hot3.png

Temp爆满处理,

(个人不建议这样做)

 


--创建临时表空间 temp2 
create temporary tablespace temp2 tempfile '/home/oracle/app/oradata/dbcsk/temp02.dbf' size 5G autoextend off;

--修改temp2为临时表空间
alter database default temporary tablespace temp2;

--删除原来temp 并将系统的文件删除 
drop tablespace temp including contents and datafiles cascade constraints;

 

 

转载于:https://my.oschina.net/ulink/blog/1528434

你可能感兴趣的:(数据库)