首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > oracle >

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

2012-02-12 
多个用户的权限问题请教有三个用户A,B,CA有两个表:Table1,Table2用户B创建了两个synonym:Table1,Table2分

多个用户的权限问题请教
有三个用户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;

试试

热点排行