ORA-01950:no privileges on tablespace 'USERS'

来源:互联网 发布:网络分销商城管理系统 编辑:程序博客网 时间:2024/06/05 17:40

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解决了!

0 0