oralce 跨用户访问表时,需要授予权限,访问如果没有添加同义词,还需要加上用户名称,以 用户.表名的方式访问,添加同义词的作用就是可以直接访问其他用户的表,视图,序列等。
基本语法:
grant select,update,delete,insert on tableA to user_temp;
在需要授权的用户下面
create or replace synonym tableA for user_res.tableA;
oralce 跨用户访问表时,需要授予权限,访问如果没有添加同义词,还需要加上用户名称,以 用户.表名的方式访问,添加同义词的作用就是可以直接访问其他用户的表,视图,序列等。
基本语法:
grant select,update,delete,insert on tableA to user_temp;
在需要授权的用户下面
create or replace synonym tableA for user_res.tableA;