I have a question about ms sql permissions
I set the DENY permission for the UPDATE column
DENY UPDATE ON [MyTable] (MyColumn) TO [PrincipalName] ;
It works fine (prevents updating MyColumn when I directly UPDATE MyTable MyColumn), but it still gives the user the ability to update this column using a stored procedure.
Is there any solution to this problem?
source share