码迷,mamicode.com
首页 > 数据库 > 详细

oracle 授权用户访问指定视图

时间:2016-12-04 07:05:42      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:ora   connect   查询   option   log   视图   highlight   记录   use   

  

--创建用户 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 授权用户访问指定视图

标签:ora   connect   查询   option   log   视图   highlight   记录   use   

原文地址:http://www.cnblogs.com/Jscriptman/p/6130028.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!