TECH
QUESTION
자주하는 질문답변 입니다.
Oracle
작성자 | 유건데이타 | 등록일 | 2019-08-13 |
제목 | ROLE로 주어진 권한 이외의 주어진 권한 확인 | ||
---|---|---|---|
select grantee||','||privilege||','||owner||','||table_name
from dba_tab_privs where grantee not in (select role from dba_roles) and grantee not in ('ORDSYS', 'OTULN', 'PUBLIC', 'SYS', 'SYSTEM', 'CYXSYS', 'MDSYS', 'ODM', 'OLAPSYS', 'WKSYS', 'WMSYS', 'XDB') order by 1 asc; |
Comment | |||
---|---|---|---|
등록된 코멘트가 없습니다. |