• I tried to find the object in Mydb database but I did not find it. How to find that object, what it is and grant execute permission?

    If you cant see it you probably do not have access to it. You will need to get someone with db_owner or sysadmin or something like that to find the object if you can not find it. Then grant the developer access to run it.

    USE AdventureWorks2012;

    GRANT EXECUTE ON OBJECT::HumanResources.uspUpdateEmployeeHireInfo

    TO Recruiting11;

    GO

    - Tony Sweet