oracle用户查询授权
http://blog.sina.com.cn/s/blog_6d6e54f70100wh1d.html
本想使用
grant select any table to B
但是报权限不足。
于是:用A用户登录,然后执行:
select 'grant select on '||table_name ||' to b;' from user_tables ;
然后把结果都执行一下。(修改b为具体的用户)
发布时间: 2013-07-24 14:36:30 作者: rapoo
oracle用户查询授权
http://blog.sina.com.cn/s/blog_6d6e54f70100wh1d.html
本想使用
grant select any table to B
但是报权限不足。
于是:用A用户登录,然后执行:
select 'grant select on '||table_name ||' to b;' from user_tables ;
然后把结果都执行一下。(修改b为具体的用户)