Granting Rights on Stored Procedure to another user of Oracle
I am a student of Undergraduate studies , and I am facing little problem in granting rights of ownership to a user A to a stored procedure being owned by user B in database Oracle 10g mode =xe. Please help me in writing sql commands for granting rights of ownership on stored procedure xyz to another user A. I'm not sure that I understand what you mean by "rights of ownership". If User B owns a stored procedure, User B can grant User A permission to run the stored procedure GRANT EXECUTE ON b.procedure_name TO a User A would then call the procedure using the fully qualified name, i.e. BEGIN b