给oracle用户查询其它用户表的权限
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给oracle用户查询其它用户表的权限相关的知识,希望对你有一定的参考价值。
1、创建用户user1
create user user1 identified by xxxx
default tablespace XXXX_table
temporary tablespace temp
profile default
grant connect to user1;
2、方式一:批量表赋权
SELECT ‘grant select on PPOSUAT_17.‘|| table_name ||‘ to testuser_17;‘ from dba_tables where owner=‘PPOSUAT_17‘;
方式 二、sys赋权
如果想对所有表进行只读设置,可以对该用户授予select any table系统权限。
--释放
revoke select on user1.tableName from user2;
本文出自 “ahead51Jie” 博客,请务必保留此出处http://ahead51.blog.51cto.com/179590/1905407
以上是关于给oracle用户查询其它用户表的权限的主要内容,如果未能解决你的问题,请参考以下文章