数据库的一张表现在INSERT不进记录了,老提示ORA-01536 没有空间的错误,但是我增加数据文件和修改表的大小为无限制之后重起数据仍然出现该错误,怎么办啊???
这张表的记录现在300多万条

解决方案 »

  1.   

    ORA-01536 space quota exceeded for tablespace 'string'  Cause The space quota for the segment owner in the tablespace has been exhausted and the operation attempted the creation of a new segment extent in the tablespace.  
    Action Either drop unnecessary objects in the tablespace to reclaim space or have a privileged user increase the quota on this tablespace for the segment owner. 
      

  2.   

    看看在一个space中的其它表是不是也这样的问题。
    如果是的话,请检查磁盘的容量和数据文件的大小。
      

  3.   

    先看看磁盘空间,再看看user,index等几个表空间的设置。
      

  4.   

    假如这个表属于用户user1,那么以system用户登录:
    ALTER USER user1 QUOTA UNLIMITED ON 表空间名;