同义词
数据库对象(表、视图、索引……) 起别名(默认私有)
hr : employees;
查看其它用户的表,报错“表或视图不存在”:可能是权限不足
授权:
- grant XXX to 用户名;
grant select on hr. employees to scott;
select count(*) from hr. employees;
起别名:
select count(*) from hremp ;
grant create synonym to scott ;
create synonym hremp for hr. employees ;
创建公有同义词
create public synonym hremp2 for hr.employees;
- revoke xxx from 用户名;