当前位置: 代码迷 >> 综合 >> ORA-20000: -1652:ORA-01652: unable to extend temp segment by 8192 in tablespace
  详细解决方案

ORA-20000: -1652:ORA-01652: unable to extend temp segment by 8192 in tablespace

热度:69   发布时间:2023-12-18 17:53:48.0
ORA-01652: unable to extend temp segment by 8192 in tablespace RING
创建物化视图的时候报错,问题在数据表空间不足;
使用SQL语句查询对应的基表大小发现有  6607.0625M 使用sys用户
   (select sum(s.bytes/(1024*1024)) as MB  from dba_segments s
      where s.owner='基表的用户名'and s.segment_name like '%表名';)
需要扩大数据量,使用 (alter database datafile '数据文件的绝对路径'  resize 19600M;)
在进行重建,OK!
  相关解决方案