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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-01
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
  • 2021-04-29
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-17
  • 2021-05-21
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案