过程是否需要单独的表访问权限?
我可以访问表,但是当我在匿名块中运行相同的查询时,它会失败
ORA-00942: 表或视图不存在
I have access on tables but when I run the same query in Anonymous block it fails with
ORA-00942: table or view does not exist
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Oracle 安全模型意味着我们无法使用通过角色授予我们的帐户的权限来构建数据库对象(视图、存储过程等)。必须将权限明确授予我们的指定帐户。
这也适用于匿名块。
因此,如果您想要构建针对其他模式中的数据库对象运行的 PL/SQL,您必须要求模式所有者(或 DBA)授予您所需的权限。
The Oracle security model means that we cannot build database objects (views, stored procedures, etc) using privileges granted to our account through a role. The privileges have to be explicitly granted to our named account.
This applies to anonymous blocks as well.
So, if you want to build PL/SQL which runs against database objects in other schemas you will have to ask the schema owner - or the DBA - to grant you the privileges you need.