I execute the command below to revoke a user’s permissions to execute a particular SP:
REVOKE EXECUTE ON SOME.SP_NAME FROM SOME_USER;
I want a query to find out whether the execute permission has been successfully revoked.
Is there some query that will show me the all the permissions SOME_USER has on SOME.SP_NAME so that I can visually verify that EXECUTE isn’t one of them now.
EDIT:
ALL_TAB_PRIVS works fine. Here’s a session of my own:
EDIT #2: DBA_TAB_PRIVS may be better if you have access to it. ALL_TAB_PRIVS is limited to: