oracle中创建一个用户,只能查看指定的视图,如何授权

创建一个用户A,只能查看视图test,如何授权?
2025-03-20 10:16:57
推荐回答(2个)
回答1:

create user A identified by Apassword,
grant connect to A
grant select on test to A

回答2:

grant select on 视图名字 to 用户名;