如何授予角色对特定模式的访问权限
我是 Oracle 的新手,我在权限问题上遇到了困难。我在特定表空间上使用名为 ADMIN 的用户创建了一些表。这些表现在位于 ADMIN 模式中。我想从另一个名为 TESTUSER 的用户访问此表,该用户的角色名为 TEST。
有没有办法授予这个名为 TEST 的角色对模式 ADMIN 的访问权限?或者一种向用户授予此模式访问权限的方法?我也希望 ADMIN 表显示在 TEST 用户下的 sqldeveloper 中。
我已经使用了一些命令来尝试此操作,但它不起作用。例如。
GRANT SELECT on ADMIN.TABLE1 to TEST
我必须做什么?
I am new to Oracle and i am struggling with the permissions. I created some tables with user called ADMIN on a specific tablespace. The tables are in the schema ADMIN now. I want access this tables from another user called TESTUSER which is in a role called TEST.
Is there a way to grant this role called TEST access to the schema ADMIN? Or a way to grant access to the user for this schema? I aslo want that the ADMIN tables show up in the sqldeveloper under the TEST user.
I already used some commands to try this out but it doesnt work. Eg.
GRANT SELECT on ADMIN.TABLE1 to TEST
What do I have to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设:
TEST、ADMIN 是用户
ADMIN 是表 TABLE1 的所有者
TESTROLE 是一个角色
连接到架构 ADMIN 然后运行命令:
然后运行命令:
以 TEST 用户身份连接并检查:
Assuming:
TEST, ADMIN are users
ADMIN is the owner of table TABLE1
TESTROLE is a role
Connect to the schema ADMIN then run command:
Then run the command:
connect as TEST user and check: