oracle 如何给用户创建查询序列的权限

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 如何给用户创建查询序列的权限相关的知识,希望对你有一定的参考价值。

参考技术A 1、create
user
username
identified
by
password;
2、grant
select
any
table
to
username;
--授予查询任何表
3、grant
select
any
dictionary
to
username;--授予
查询任何字典
执行上面三步就行了,那么这个用户就只有查询权限,其他的权限都没有!!

oracle 如何创建只有查询权限的用户

1create user userName identified by password;  
2grant select any table to userName; --授予查询任何表  
3grant select any dictionary to userName;--授予 查询任何字典  

 

以上是关于oracle 如何给用户创建查询序列的权限的主要内容,如果未能解决你的问题,请参考以下文章