重建临时表空间
1、创建中转临时表空间
create temporary tablespace TEMP1 tempfile '/oradata/HXDB/datafile/temp02.dbf' size 256M reuse autoextend on next 16M maxsize 1024M;
2、修改缺省临时表空间
alter database default temporary tablespace temp1;
3、删除原来临时表空间
drop tablespace temp including contents and datafiles;
4、重建临时表空间
create temporary tablespace TEMP tempfile '/oradata/HXDB/datafile/temp01.dbf' size 256M reuse autoextend on next 16M maxsize 1024M;
5、修改缺省临时表空间
alter database default temporary tablespace temp;
6、删除中转用临时表空间
drop tablespace temp1 including contents and datafiles;