ORA-01950:no privileges on tablespace 'USERS'

ORA-01950:no privileges on tablespace 'USERS'

SQL>create user myuser identitied by password;
SQL>grant create session,resource,connect to myuser;
SQL>conn myuser/password;
SQL>create table TT(id number,name nvarchar2(20));
出错:ORA-01950:no privileges on tablespace 'USERS'
问题:没有分配表空间配额:
SQL>conn sys/password as sysdba;
SQL>alter user myuser quota 10M[unlimited] on users;


OK解决了!

原文地址:https://www.cnblogs.com/pekkle/p/6568853.html