RamHardikar
Programmer
Hi,
in which dictionary view could i see if a role has got EXECUTE privilege on a procedure?
in which dictionary view could i see if a role has got EXECUTE privilege on a procedure?
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.
SQL> create role ram;
Role created.
SQL> grant execute on bogus to ram;
Grant succeeded.
select privilege, grantee, table_name
from user_tab_privs
where privilege = 'EXECUTE';
PRIVILEGE GRANTEE TABLE_NAME
--------------- --------------- -------------
EXECUTE RAM BOGUS