Temp表空间不足,一般出现这个问题就是join 多了…建议优化数据库设计,但是时间紧可以增加临时表空间来暂时缓解下:
--查询表空间大小
select * from database_properties where property_name='DEFAULT_TEMP_TABLESPACE';
--创建一个表空间 \hddisk 是数据
create temporary tablespace temp02 tempfile '\hddisk\oracle_temp_space\data' size 1024M autoextend on;
-- 修改临时表空间
alter database default temporary tablespace temp02;
-- 查看临时表空间
SELECT USERNAME,TEMPORARY_TABLESPACE FROM DBA_USERS;
--删除原来的临时表空间
drop tablespace temp including contents and datafiles;
--查看所有表空间名确认临时表空间是否已删除
select tablespace_name from dba_tablespaces;