ORA-01536 space quota exceeded for tablespace "name" Cause: The space quota in the tablespace is already used up and the operation attempted the creation of a new extent in the tablespace. 
Action: EitherDrop unnecessary objects in the tablespace to reclaim space.
Ask the database administrator to increase the tablespace quota. 

解决方案 »

  1.   

    扩展USERS空间,并打开AUTOEXTENT
      

  2.   

    表空间不够用.扩展 表空间~
    如下是在 图形方式(DBA Studio) 的作法:
    进入 之后~
     数据库名 -> 存储 -> 空间 -> 你的用户名-> 数据文件(选中之后)
     在右边有: "一般信息" 和 "存储" 两个可选页面~
     单击 "存储" 进入页面~
          选定 "数据文件已满后自动扩展(AUTOEXTEND)
                然后,自己看着办吧. ^&^ (有手动和自动,任君选择...)或者用 命令方式(SQL 语句) 的作法:
     ALTER DATABASE DATAFILE '数据文件(路径+名称)' AUTOEXTEND ON
      

  3.   


     可能是磁盘配额的问题 select * from user_users, 看看当前用户在users表空间被分配的
     quota值.
     
      

  4.   

    1.Drop unnecessary objects in the tablespace to reclaim space. 
    2.Ask the database administrator to increase the tablespace quota. 第二的解决办法:ALTER TABLESPACE users
        ADD DATAFILE 'filename2' SIZE 100M
          AUTOEXTEND ON
          NEXT 512K