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.

解决方案 »

  1.   

    创建用户的时候可以指定表空间限量,下面的例子就是限制使用10M空间CREATE USER sidney 
        IDENTIFIED BY welcome 
        DEFAULT TABLESPACE cases_ts 
        QUOTA 10M ON cases_ts ;一旦使用的空间到达上限就不能插入数据了,修改用户表空间限量使用:
    ALTER USER sidney QUOTA 50M ON cases_ts ;不限制使用表空间使用UNLIMITED
    ALTER USER sidney QUOTA UNLIMITED ON users
      

  2.   

    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.