oracle 4--角色

love_bo發表於2020-04-04

角色:許可權的集合
create role myrole;
grant create session to myrole;
grant create table to myrole;
create user zhangsan identified by zhangsan;
grant myrole to zhangsan;
drop role myrole;
注意:有的系統許可權無法直接賦予角色
   alter table--沒有這個許可權和 alter any table
   drop table---沒有這個許可權和drop any table
   created table和create any table
表是屬於某一個使用者
角色不屬於某個使用者

相關文章