1、create user userName identified by password;
2、grant select any table to userName; --授予查询任何表
3、grant select any dictionary to userName;--授予 查询任何字典
执行上面三步就行了,那么这个用户就只有查询权限,其他的权限都没有!!
创建用户名、授予查询任何表、授予查询任何字典。
具体操作如下:
create user userName identified by password;
grant select any table to userName; --授予查询任何表
grant select any dictionary to userName;--授予查询任何字典
执行上面三步就行了,那么这个用户就只有查询权限,其他的权限都没有。
select * from dba_users可以查到所有的用户,在里面只要加上你想要的条件就行了