为了账号安全,请及时绑定邮箱和手机立即绑定

oracle数据权限问题

INSERT INTO userinfo 

VALUES (1 , 'xxx' , '123' , 'xxx@163.com' , SYSDATE)

错误报告:

SQL 错误: ORA-01950: 对表空间 'USERS' 无权限

01950. 00000 -  "no privileges on tablespace '%s'"

*Cause:    User does not have privileges to allocate an extent in the

           specified tablespace.

*Action:   Grant the user the appropriate system privileges or grant the user

           space resource on the tablespace.

下的客户端,自己创建了用户,能创建表格,但是添加数据的时候总是提示权限不够,怎么把自己创建的用户的权限提升上去,

正在回答

1 回答

一般我们创建用户的时候,一般要用create user wangfan identified by wangfan default tablespace test. 但一定还要加上一句:quota Storage(unlimited, 8K, 10M etc.) on tablespace; 否则就会出现对表空间使用无权限的错误。quota的意思是该用户可以得到在这个tablespace上所得到的空间。后来就以sysdba的身份登陆,alter user wangfan quota unlimited on test;然后再创建表就没有问题了。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Oracle数据库开发必备利器之SQL基础
  • 参与学习       160635    人
  • 解答问题       641    个

为你带来Oracle开发必备的sql基础,为后续课程学习打下好的基础

进入课程

oracle数据权限问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信