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;