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

2024-12-15 22:50:03
推荐回答(3个)
回答1:

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

回答2:

创建用户名、授予查询任何表、授予查询任何字典。

具体操作如下:

  1. create user userName identified by password;

  2. grant select any table to userName; --授予查询任何表

  3. grant select any dictionary to userName;--授予查询任何字典

执行上面三步就行了,那么这个用户就只有查询权限,其他的权限都没有。

回答3:

select * from dba_users可以查到所有的用户,在里面只要加上你想要的条件就行了