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.

  • 相关阅读:
    constraint更新表列约束默认值
    sql语句 关于日期时间、类型转换的东西
    SQL数据库完全复制
    SQLServer语句 汇总
    SQL Server Profiler使用方法
    SQL语句-批量插入表(表数据插表)
    VS 快捷键
    外部引用 jQuery 库
    mongodb笔记
    Ubuntu16.04安装live-server
  • 原文地址:https://www.cnblogs.com/houzhiheng/p/12096784.html
Copyright © 2011-2022 走看看