ORA-25153: Temporary Tablespace is Empty ORA-06512: at "SYS.DBMS_STATS", line 24281 ORA-06512: at "SYS.DBMS_STATS", line 24332 ORA-06512: at line 1 SQL> 查看临时表空间:temp表空间是处于online状态 1 2 3 4 5 6 7 8 9 10
alter database tempfile file# drop 删除不存在的临时表空间文件 再执行expdp却又报出ORA-25153临时表空间为空的错误,那就说明还有其它临时表空间,而temp不是其默认临时表空间 执行select * from dba_tablespaces where contents='TEMPORARY';确认以上问题 于量再执行alter tablespace pdbtemp add tempfile '/path/...