多个用户的权限问题请教
有三个用户A,B,C
A 有两个表:
Table1,Table2
用户B 创建了两个synonym:
Table1,Table2
分别指向A用户的两个表Table1和Table2(同名)
用符号Table1,Table2创建一个ViewB
现在用户C用户要创建一个B用户的ViewB的符号ViewB(同名).
请问C需要怎样的权限? (Oracle9i)
------解决方案--------------------grant select on ViewB to c
------解决方案--------------------dba:
grant create view to c;
A:
grant select on table1 to c;
grant select on table2 to c;
试试