--创建中转临时表空间
create temporary tablespace TEMP2 TEMPFILE '/u01/app/oracle/oradata/orcl/temp02.dbf' SIZE 512M REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED;
--改变缺省临时表空间 为刚刚创建的新临时表空间temp2
alter database default temporary tablespace TEMP2;
--删除原来临时表空间
drop
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP01(解决方案)
最新推荐文章于 2024-11-26 10:00:00 发布