Can someone advise me on how to create a user in Oracle 11g and only grant that user the ability only to execute one particular stored procedure and the tables in that procedure.
I am not really sure how to do this!
|
Can someone advise me on how to create a user in Oracle 11g and only grant that user the ability only to execute one particular stored procedure and the tables in that procedure. I am not really sure how to do this! |
|||||
|
|
Connect as SYSTEM.
You may also need to:
to whichever tables the procedure uses. |
|||||||||
|
|
The Oracle documentation is comprehensive, online and free. You should learn to use it. You can find the syntax for CREATE USER here and for GRANT here, In order to connect to the database we need to grant a user the CREATE SESSION privilege. To allow the new user rights on a stored procedure we need to grant the EXECUTE privilege. The grantor must be one of these:
Note that we would not normally need to grant rights on objects used by a stored procedure in order to use the procedure. The default permission is that we execute the procedure with the same rights as the procedure owner and, as it were, inherit their rights when executing the procedure. This is covered by the AUTHID clause. The default is definer (i.e. procedure owner). Only if the AUTHID is set to CURRENT_USER (the invoker, that is our new user) do we need to grant rights on objects used by the procedure. Find out more. |
||||
|
|
|
||||
|
|