问题:
插入数据报错
原因:
select * from user_ts_quotas;
查询用户在表空间的配置
对users表空间的使用配额为0
解决:
切换到具有dba角色的用户下授权
alter user scott quota 50m on users;
查询配额:
select * from user_ts_quotas u where u.TABLESPACE_NAME ='USERS' ;
执行成功:
问题:
插入数据报错
原因:
select * from user_ts_quotas;
查询用户在表空间的配置
对users表空间的使用配额为0
解决:
切换到具有dba角色的用户下授权
alter user scott quota 50m on users;
查询配额:
select * from user_ts_quotas u where u.TABLESPACE_NAME ='USERS' ;
执行成功: