oracle 授权用户访问指定视图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 授权用户访问指定视图相关的知识,希望对你有一定的参考价值。

  

--创建用户 test_user ,并授权 连接,查询视图
create user test_user identified by test_user;
grant connect to test_user;
grant create view to test_user;

--授权视图引用的表权限给新用户
grant select on other_user.table1 to test_user with grant option;
grant select on other_user.table2 to test_user with grant option;
grant select on other_user.table3 to test_user with grant option;

-- 使用新用户 test_user 创建相关视图
create or replace view v_1 as
select a.*,b.*,c.* from  other_user.table1 a
join other_user.table2 b on a.id=b.fid
join other_user.table3 c on b.fid=c.xid

-- 移出新用户创建视图的权限
revoke create view from test_user;

 

绕了很多弯路,记录一下

以上是关于oracle 授权用户访问指定视图的主要内容,如果未能解决你的问题,请参考以下文章

oracle中创建一个用户,只能查看指定的视图,如何授权

oracle 创建一个用户,只能访问指定的对象

Oracle创建用户并给用户授权查询指定表或视图的权限

Oracle用户授权角色管理

转://Oracle A用户给B用户授权查询指定表或视图权限方案

sqlserver给指定用户授权访问指定表