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.
在表空间中为该段分配的空间已用完,即超过提供的限额
查看数据库中对于该用户的限额
select username,tablespace_name,max_bytes from dba_ts_quotas 
where username='用户名'
如果超过该限额的话,则出错

解决方案 »

  1.   

    看一下你的tablespace每次拓展的大小,下一次拓展太大的话可能超过了你原来定义的space大小
      

  2.   

    select * from user_ts_quota;(没有记错吧,呵呵)就可以看出用户在各表空间上有多少空间限额,或者是不是无限制的
      

  3.   

    Sorry,使我的用户的权限设置的问题,我把admin 的权限给他了,就ok了。谢谢各位。