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.

  • 相关阅读:
    查看内置命令和非内置命令帮助的几种方法(man、help、info)
    手写js的insertAfter
    Java 单链表简单实现
    StudentMain控屏后如何关闭
    python3 twisted问题
    python3 you-get
    数据库方言(这是啥玩意儿?)
    vi/vim用法
    sublime text3
    数据库命令大全(也不是很全哈)
  • 原文地址:https://www.cnblogs.com/houzhiheng/p/12096784.html
Copyright © 2011-2022 走看看