ORA-01652 Unable to extend temp segment by in tablespace

前端 未结 4 806
北荒
北荒 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 02:56

    Create a new datafile by running the following command:

    alter tablespace TABLE_SPACE_NAME add datafile 'D:\oracle\Oradata\TEMP04.dbf'            
       size 2000M autoextend on;
    

提交回复
热议问题