一 以需要被查询的用户登录oracle(假如为A) B为要查询A用户下的表的用户
二 执行查询语句: select 'grant select on A.'|| tname ||' to B;' from tab;
以下为模拟结果:
- grant select on A.DEPT to B;
- grant select on A.EMP to B;
- grant select on A.BONUS to B;
- grant select on A.SALGRADE to B;
- grant select on A.AVGSAL to B;
- grant select on A.BOOK to B;
- grant select on A.TEST_INDEX to B;
- grant select on A.TB_EMPLOYEES to B;
...
三 将结果复制
四 登录system用户
五 打开sqlwindow ,粘贴,运行。
可以将select换成all就是这些表的所有权限都赋予给B