Oracle

創建角色並授予角色權限

  • June 24, 2020

我想創建一個名為“user_updates”的角色,這個角色應該擁有“table_note_updates”的權限。我的數據庫中已經提供了名為“table_note_updates”的權限。如何授予我創建的角色的權限。

一個角色可以授予另一個角色。

create role user_updates;
grant table_note_updates to user_updates;
create role user_updates;
grant table_note_updates to user_updates;

將創建的角色授予使用者。

grant user_updates to myuser; 

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