Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Granted or revoked privilege RECEIVE is not compatible with object

I am using sql server 2008 r2.

I am following this tutorial http://www.codeproject.com/Articles/144344/Query-Notification-using-SqlDependency-and-SqlCach#heading0001

This is my code

GRANT RECEIVE ON dbo.tranferToSIP TO UserName

I got this error message:

Granted or revoked privilege RECEIVE is not compatible with object.
like image 664
Marco Dinatsoli Avatar asked Dec 09 '25 00:12

Marco Dinatsoli


1 Answers

I had created roles to execute the stored procedure and was trying to grant execute permission to tables. Check whether table needs a execute permission or not. In my case, it was not required to grant permissions for tables and we do not execute tables. :)

like image 64
Dev Avatar answered Dec 11 '25 11:12

Dev