Oracle

如何找出哪些角色在某些表上有授權?

  • August 1, 2016

我有 2 個表,我想知道哪些對象(表)授權被分配給一個角色。

有沒有辦法找出來?

我能夠在其他地方找到答案。所以我需要查詢role_tab_privs

這是其他人需要的查詢:

select role, table_name, privilege 
from role_tab_privs
where table_name in ('TABLE_NAME') order by role; 

右鍵點擊對象資源管理器視窗中的表並選擇屬性。轉到權限選項卡,您可以看到您的表角色。

引用自:https://dba.stackexchange.com/questions/145026