首页 > 代码库 > oracle 授权用户访问指定视图
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 asselect a.*,b.*,c.* from other_user.table1 ajoin other_user.table2 b on a.id=b.fidjoin other_user.table3 c on b.fid=c.xid-- 移出新用户创建视图的权限revoke create view from test_user;
绕了很多弯路,记录一下
oracle 授权用户访问指定视图
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。