[Home] [Help]
[Dependency Information]
Object Name: | DBA_TAB_PRIVS |
---|---|
Object Type: | VIEW |
Owner: | SYS |
Subobject Name: | |
Status: | VALID |
All grants on objects in the database
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
GRANTEE | VARCHAR2 | (128) | User to whom access was granted | |
OWNER | VARCHAR2 | (128) | Owner of the object | |
TABLE_NAME | VARCHAR2 | (128) | Name of the object | |
GRANTOR | VARCHAR2 | (128) | Name of the user who performed the grant | |
PRIVILEGE | VARCHAR2 | (40) | Table Privilege | |
GRANTABLE | VARCHAR2 | (3) | Privilege is grantable | |
HIERARCHY | VARCHAR2 | (3) | Privilege is with hierarchy option | |
COMMON | VARCHAR2 | (3) | Privilege was granted commonly | |
TYPE | VARCHAR2 | (24) |
Cut, paste (and edit) the following text to query this object:
SELECT GRANTEE
, OWNER
, TABLE_NAME
, GRANTOR
, PRIVILEGE
, GRANTABLE
, HIERARCHY
, COMMON
, TYPE
FROM SYS.DBA_TAB_PRIVS;
|
|
|