软讯网络 > 冲浪宝典 > 网络资源 > 错误号ORA-01536:space quota exceeded for table space
【标 题】:错误号ORA-01536:space quota exceeded for table space
【关键字】:
ORA-01536,space,quota,exceeded,for,table,space
【来 源】:http://www.cublog.cn/u/22782/showart.php?id=176450
错误号ORA-01536:space quota exceeded for table space
错误号ORA-01536:space quota exceeded for table space 'ALCATEL'的解决办法
三个解决办法,任你选择:
(1) alter user USERNAME quota 100M on TABLESPACENAME;
(2) alter user USERNAME quota unlimited on TABLESPACENAME;
(3) grant unlimited tablespace to USERNAME;
先查询一下是否是有控制的,用这个语句
select * from dba_ts_quotas
如果这个max_blocks字段的值不是 -1 那么表明是有限制的
我的用的解决方法是执行:
alter user USERNAME quota unlimited on TABLESPACENAME;