我在scott中创建一个私有同义词:
CREATE SYNONYM  s_dept
FOR  dept;
然后
grant select on dept to sys;
然后以sys身份登陆:
select * from s_dept;
提示表或视图不存在
请问为何不能访问s_dept?