zoukankan      html  css  js  c++  java
  • ORA-01950: no privileges on tablespace 'USERS'

    问题描述:对一张新增的表进行insert操作,提示没有操作权限,简单的记录一下

    解决方案:grant resource to username  grant resource to username 时 自动获得了有unlimited tablespace的系统权限

    SQL> create table jobs(job_id varchar2(10) primary key,job_title varchar2(35) not null,min_salary number(6),max_salary number(6));

    Table created.

    SQL> insert into values('PRD','程序员',5000,10000);
    insert into values('PRD','程序员',5000,10000)
    *
    ERROR at line 1:
    ORA-00903: invalid table name


    SQL> insert into jobs values('PRD','程序员',5000,10000);
    insert into jobs values('PRD','程序员',5000,10000)
    *
    ERROR at line 1:
    ORA-01950: no privileges on tablespace 'USERS'

    SQL> show user
    USER is "SYS"
    SQL>
    SQL>
    SQL> grant insert on jobs to user01;
    grant insert on jobs to user01
    *
    ERROR at line 1:
    ORA-00942: table or view does not exist


    SQL> grant insert on user01.jobs to user01;

    Grant succeeded.

    SQL> conn user01/410526
    Connected.
    SQL> insert into jobs values('PRD','程序员',5000,10000);
    insert into jobs values('PRD','程序员',5000,10000)
    *
    ERROR at line 1:
    ORA-01950: no privileges on tablespace 'USERS'

    SQL> grant resource to user01;

    Grant succeeded.

    SQL> insert into jobs values('PRD','程序员',5000,10000);

    1 row created.

  • 相关阅读:
    窗口
    DataTemplateSelector
    CompositeCollection
    Drawing
    模板
    集合视图
    绑定
    动画
    【数据结构初学】(java实现篇)——队列(转)
    慕课学习手记!(完成查找书籍小程序~)
  • 原文地址:https://www.cnblogs.com/houzhiheng/p/12096784.html
Copyright © 2011-2022 走看看