Get Object privileges a user has received by querying user_col_privs_recd : user_col_privs_recd « System Tables Data Dictionary « Oracle PL/SQL Tutorial






SQL> desc user_col_privs_recd;
 Name             Null?    Type

 OWNER            NOT NULL VARCHAR2(30)  --User who owns the object.
 TABLE_NAME       NOT NULL VARCHAR2(30)  --Name of the table on which the privilege was granted.
 COLUMN_NAME      NOT NULL VARCHAR2(30)  --Name of the column on which privilege was granted.
 GRANTOR          NOT NULL VARCHAR2(30)  --User who granted the privilege.
 PRIVILEGE        NOT NULL VARCHAR2(40)  --Privilege on the object.
 GRANTABLE                 VARCHAR2(3)   --Whether the grantee can grant the privilege to another. Equal to YES or NO.



SELECT * FROM user_col_privs_recd;








30.76.user_col_privs_recd
30.76.1.Get Object privileges a user has received by querying user_col_privs_recd