| |
 |
|
DBA_TAB_PRIVS view tips
Oracle Tips by Burleson Consulting |
DBA_TAB_PRIVS
<< Return to the index
Oracle 11g makes the following comments about the DBA_TAB_PRIVS table: "All grants on objects in the database"
Related notes on DBA_TAB_PRIVS:
Column description of the DBA_TAB_PRIVS view:GRANTEEDescription of DBA_TAB_PRIVS.GRANTEE: "User to whom access was granted" OWNERDescription of DBA_TAB_PRIVS.OWNER: "Owner of the object" TABLE_NAMEDescription of DBA_TAB_PRIVS.TABLE_NAME: "Name of the object" GRANTORDescription of DBA_TAB_PRIVS.GRANTOR: "Name of the user who performed the grant" PRIVILEGEDescription of DBA_TAB_PRIVS.PRIVILEGE: "Table Privilege" GRANTABLEDescription of DBA_TAB_PRIVS.GRANTABLE: "Privilege is grantable" HIERARCHYDescription of DBA_TAB_PRIVS.HIERARCHY: "Privilege is with hierarchy option"
DBA_TAB_PRIVS View SourceOracle 11g's data dictionary defines the DBA_TAB_PRIVS view using the following source query:
select ue.name, u.name, o.name, ur.name, tpm.name,
decode(mod(oa.option$,2), 1, 'YES', 'NO'),
decode(bitand(oa.option$,2), 2, 'YES', 'NO')
from sys.objauth$ oa, sys."_CURRENT_EDITION_OBJ" o, sys.user$ u, sys.user$ ur,
sys.user$ ue, table_privilege_map tpm
where oa.obj# = o.obj#
and oa.grantor# = ur.user#
and oa.grantee# = ue.user#
and oa.col# is null
and oa.privilege# = tpm.privilege
and u.user# = o.owner#
 |
If you like Oracle tuning, see the book "Oracle
Tuning: The Definitive Reference", with 950 pages of tuning tips and
scripts.
You can buy it direct from the publisher for 30%-off and get
instant access to the code depot of Oracle tuning scripts. |
 |
 |
|
Download your Oracle scripts now:
www.oracle-script.com
The
definitive Oracle Script collection for every Oracle professional DBA
|
|