今天新买了台服务器,准备把老服务器上的东西更新过来
写了下面这个句子
Create Table sg_static_user_200901
As
Select * From [email protected];
Commit;
可是提示
ORA-01630: 表空间中的 temp 段达到 max # extents()
ORA-02063: 紧接着line(源于NYCOMM.WORLD)
这个问题应该怎么处理???

解决方案 »

  1.   

    [email protected]数据量有多大?
    可以先创建表,再复制数据insert into newtab select * from oldtab
      

  2.   

    ORA-01630: max # extents (string) reached in temp segment in tablespace string 
    Cause: A temp segment tried to extend past max extents.
     
    Action: If maxextents for the tablespace is less than the the system maximum, you can raise that. Otherwise, raise pctincrease for the tablespace
     
      

  3.   

    ORA-02063: preceding stringstring from stringstring 
    Cause: an Oracle error was received from a remote database link.
     
    Action: refer to the preceding error message(s)