DB: Oracle 10g
I can grant DML commands to a user for some tables:
GRANT SELECT, UPDATE, DELETE, INSERT ON USER_A.TABLE_1 TO USER_B;
How to list all grants (about select, update, insert, delete) that USER_B has received, and for what tables?
I checked table "all_tab_privs_recd", but doesn't have what I'm looking for.