216 B
216 B
添加select权限
grant select on USER1.TABLE to USER2;
添加创建同义词权限
grant create synonym to USER2;
创建同义词
create or replace synonym TABLE for USER1.TABLE;
grant select on USER1.TABLE to USER2;
grant create synonym to USER2;
create or replace synonym TABLE for USER1.TABLE;