oracle 3

love_bo發表於2020-04-04
許可權傳遞:
sys對lisi授權
grant alter any table to lisi;
lisi把許可權授予給wangwu:
grant alter any table to wangwu;//許可權不足
要想把sys授予給lisi的許可權轉給wangwu:
grant alter any table to lisi with admin option;

物件許可權:
grant select on a to lisi;
要把能查詢A表的許可權授予出去:
grant select on a to lisi with grant option;


相關文章