InterviewSolution
| 1. |
Suppose A Procedure Proc_get_highest_rank Is Stored In The User Schema, User_a. How Can You Access The Procedure Within This Schema? |
|
Answer» The proc_get_highest_rank PROCEDURE can be accessed within the user_a schema from another stored procedure. It can ALSO be accessed either from an anonymous PL/SQL block EXECUTED on the SQL prompt LOGGED in as user_a or directly at the SQL prompt using the EXECUTE command. In addition, it can be accessed by other users if they have the EXECUTE PRIVILEGE. The proc_get_highest_rank procedure can be accessed within the user_a schema from another stored procedure. It can also be accessed either from an anonymous PL/SQL block executed on the SQL prompt logged in as user_a or directly at the SQL prompt using the EXECUTE command. In addition, it can be accessed by other users if they have the EXECUTE privilege. |
|