Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
...Because in Oracle's infinite wisdom <grin>, they poorly named the view "DBA_TAB_PRIVS" when, instead, they should have named the view "DBA_OBJ_PRIVS".Maswien said:...why I need check a view that shows user's permissions on tables while I want to know user's permissions on procedures.
grant execute on xyz to doh;
select privilege, table_name
from dba_tab_privs
where grantee = 'DOH';
PRIVILEGE TABLE_NAME
---------------------------------------- ----------
EXECUTE XYZ