Home Forums Reporting Services Reporting Services Subscriptions and error message "EXECUTE permission denied on object 'xp_sqlagent_notify', database 'mssqlsystemresource', schema 'sys'." RE: Subscriptions and error message "EXECUTE permission denied on object 'xp_sqlagent_notify', database 'mssqlsystemresource', schema 'sys'."

  • In my case the report server account already had RSExecRole in all relevant databases. Grant exec on procdure to role in master database helped:

    use [master]

    GO

    GRANT EXECUTE ON [sys].[xp_sqlagent_notify] TO [RSExecRole]

    GO