ORA-01652 Unable to extend temp segment by in tablespace

前端 未结 4 810
北荒
北荒 2020-12-09 02:40

I am creating a table like

create table tablename
as
select * for table2

I am getting the error

ORA-01652 Unable to extend          


        
4条回答
  •  悲哀的现实
    2020-12-09 03:09

    I encountered the same error message but don't have any access to the table like "dba_free_space" because I am not a dba. I use some previous answers to check available space and I still have a lot of space. However, after reducing the full table scan as many as possible. The problem is solved. My guess is that Oracle uses temp table to store the full table scan data. It the data size exceeds the limit, it will show the error. Hope this helps someone with the same issue

提交回复
热议问题