标签:表空间配额不足
ORA-01536: space quota exceeded for tablespace ‘TFR_DATA‘ #
alter user tfr quota unlimited on TFR_DATA;
表空间配额不足
方法一:SQL> alteruser user_name quota unlimited on tablespace_name;
方法二:SQL> alteruser user_name quota 100M on tablespace_name;
方法三:SQL> grantunlimited tablespace to user_name;
ORA-01536: space quota exceeded for tablespace 'TFR_DATA' #
标签:表空间配额不足
原文地址:http://10983441.blog.51cto.com/10973441/1769921