SHOW GRANTs
SHOW GRANTs [{object_name | role_name}]
This command displays a list of all grants in the current database if the first form of the command is used.The second form drills down and displays only those details for the selected object, which may be a table, procedure, etc.Alternatively, if a role name is provided, only a list of users who have been granted that role will be displayed.
SQL> show grants; /* Grant permissions for this database */ GRANT ALL ON COUNTRY TO PUBLIC WITH GRANT OPTION GRANT ALL ON CUSTOMER TO PUBLIC WITH GRANT OPTION ... GRANT EXECUTE ON PROCEDURE ADD_EMP_PROJ TO PUBLIC WITH GRANT OPTION GRANT EXECUTE ON PROCEDURE ALL_LANGS TO PUBLIC WITH GRANT OPTION ... SQL> show grants employee; GRANT ALL ON EMPLOYEE TO PUBLIC WITH GRANT OPTION SQL> show grants ship_order; GRANT EXECUTE ON PROCEDURE SHIP_ORDER TO PUBLIC WITH GRANT OPTION SQL> show grants default_user; GRANT DEFAULT_USER TO SYSDBA