重建temp表空间吧1.创建临时中转的临时表空间TEMP2 SQL> create  temporary  tablespace  TEMP2  TEMPFILE  D:\ORACLE\ORADATA\KDC\TEM
P02.DBF'  SIZE  5M  REUSE  AUTOEXTEND  ON  NEXT  640K  MAXSIZE  UNLIMITED
  2  /表空间已创建。2.修改默认临时表空间为TEMP2 SQL> alter database default temporary tablespace temp2;数据库已更改。3.drop原来的临时表空间TEMP:SQL> drop tablespace temp including contents and datafiles;表空间已丢弃。4.重新创建临时表空间TEMP: SQL> create  temporary  tablespace  TEMP  TEMPFILE  D:\ORACLE\ORADATA\KDC\TEM
P01.DBF'  SIZE  5M  REUSE  AUTOEXTEND  ON  NEXT  640K  MAXSIZE  UNLIMITED
  2  /表空间已创建。5.更改默认临时表空间为TEMP: SQL> alter database default temporary tablespace temp;数据库已更改。6.drop临时表空间TEMP2SQL> drop tablespace temp2  including contents and datafiles;表空间已丢弃。