Create table 出现ORA-01536:超出表空间的空间限量。但是标空间足够大!-- Create table
create table w_system_log
(
  id number(10) not null
)
tablespace INFO
  storage
  (
    initial 40K
    next 40K
    minextents 1
    maxextents 505
    pctincrease 50
  );

解决方案 »

  1.   

    alter user user_name quota 500M/unlimited on tablespace_name
      

  2.   

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

  3.   

    alter user username quota unlimited on tablespacename如果还不能解决问题,
    把你的tablespacename的最大extent扩大或者置为无限制。