Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

EXECUTE privilege on a procedure

Status
Not open for further replies.

RamHardikar

Programmer
Feb 16, 2001
109
GB
Hi,

in which dictionary view could i see if a role has got EXECUTE privilege on a procedure?
 
Ram,

Here is an example of your scenario:
Code:
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
Let us know if this resolves your question.

[santa]Mufasa
(aka Dave of Sandy, Utah, USA)
[ Providing low-cost remote Database Admin services]
Click here to join Utah Oracle Users Group on Tek-Tips if you use Oracle in Utah USA.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top