6

I want to give privileges to a user to call a function another users function.

I write this : GRANT EXECUTE ANY FUNCTION TO user;

but it doesn't work.

user need to call this:

call XXX.YYY.AlterAllInvalidObjects(NULL,'PACKAGE BODY');

but how can I give grant ?

NOTE : I don't want to use : GRANT EXECUTE ON FUNCTION AlterAllInvalidObjects TO user; I need general solution not specific function name.

Michał Kuliński
  • 1,928
  • 3
  • 27
  • 51
CompEng
  • 7,161
  • 16
  • 68
  • 122

2 Answers2

8
GRANT EXECUTE ANY PROCEDURE TO user;

http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9013.htm#i2077938

will manage both functions and procedures. You can't grant that way to functions only...

EDIT

the other way (but you'll have to run it every time the other user will create a new function to get all the grants):

Run

select 'GRANT EXECUTE ON '||owner||'.'||object_name||' TO user;'
from all_objects
where owner = 'xxx'
and object_type='FUNCTION';

and copy-paste-execute the result...

or use a SP doing the same thing (cursor on the query and execute immediate in loop)

Raphaël Althaus
  • 59,727
  • 6
  • 96
  • 122
0

To be honest it looks like you're asking about synonyms, not grants because grants doesn't help you to invoke call AlterAllInvalidObjects without mentioning the schema. Please consider about http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_7001.htm

Alexander Tokarev
  • 1,000
  • 7
  • 16