如何授予角色对特定模式的访问权限

发布于 2024-12-24 21:34:22 字数 342 浏览 4 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稍尽春風 2024-12-31 21:34:22

假设:
TEST、ADMIN 是用户
ADMIN 是表 TABLE1 的所有者
TESTROLE 是一个角色

连接到架构 ADMIN 然后运行命令:

GRANT SELECT on TABLE1 to TESTROLE;

然后运行命令:

GRANT TESTROLE TO TEST; 

以 TEST 用户身份连接并检查:

SELECT * FROM ADMIN.TABLE1;

Assuming:
TEST, ADMIN are users
ADMIN is the owner of table TABLE1
TESTROLE is a role

Connect to the schema ADMIN then run command:

GRANT SELECT on TABLE1 to TESTROLE;

Then run the command:

GRANT TESTROLE TO TEST; 

connect as TEST user and check:

SELECT * FROM ADMIN.TABLE1;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文