当前位置: 代码迷 >> Oracle开发 >> 多个用户的权限有关问题请问
  详细解决方案

多个用户的权限有关问题请问

热度:36   发布时间:2016-04-24 07:40:03.0
多个用户的权限问题请教
有三个用户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;

试试
  相关解决方案