Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Temp Segment max extent reached
Please help. I am trying to create a table based on a select
from another table. There is 2000MB in the TEMP tablespace and
maxextents is set to unlimited. I am getting this error after
running the query:
SQL> create table temp_tb as
2 select * from tb_cnt;
select * from tb_sfa_prsbr_brand_rx_cnt
*
ERROR at line 2:
ORA-01630: max # extents (1017) reached in temp segment in tablespace
STAGE_D
The TEMP tablespace only fills to .031M before it chokes. How
can I fix this?