Permission to Stored permission

  • Hi All,

    There is login called ReportUser

    This login has db_datareader permission, additonally I want to give permission for executing dbo Stored Procedure also.

    Can anyone help me for providing scripts or navigation to providing the rights.

    Thanks in advance for any help.

    Regards,

    Mohanraj Jayaraman

  • You can either add a SQL statement at the end of the Procedure to allow the user Exec Permissions.

    Grant EXECUTE ON [ProcName] TO [UserName];

    or

    in Management Studio, right click on the user under the Logins...go to the Securables section...and from there you can any object with the specific permissions...

  • Thank You,

    It worked for me.

    Regards,

    Mohanraj Jayaraman

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply