插入数据,提示:ora-01114,表示临时表满了,解决办法如下:

发布时间 2023-06-09 09:35:11作者: 南昌开发二部

--1、查看大小和路径:查询该用户下的默认临时表空间
SELECT bytes/1024/1024/1024 AS "大小(G)",NAME FROM v$tempfile ORDER BY bytes;
--2、创建新的临时表空间
create temporary tablespace temp02 tempfile '/zxapp/oracle12c/temp02.dbf' size 1000M autoextend on;
--3、修改默认临时表空间为temp02
alter database default temporary tablespace temp02