需要一些关于RBAC治理的投入。
Scenario::
There is a role in QA READ_ROLE_QA and that has access to 2 schemas ie.,
schema_etl & schema_load
Now under schema_etl if any objects are getting created i.e., tables & view then by default who ever has access to the role "READ_ROLE_QA" is able to see those objects.
But if any object gets created under schema "schema_load" then all users who has access to the role "READ_ROLE_QA" is not able to even see those objects.
所需投入:
如何确保需要给予角色“"READ_ROLE_QA".
的角色”使用“权限的用户是可见的。
感谢您对此请求的任何帮助输入。
发布于 2022-10-06 13:24:33
下面的语句允许角色READ_ROLE_QA访问架构schema_load中未来创建的所有表。(其他特权,如给予的使用。)
grant select on future tables in schema <database>.schema_load to role READ_ROLE_QA;
https://stackoverflow.com/questions/73974561
复制相似问题