|
|
Question : REVOKE PERMISSIONS..
|
|
I have a table on which I have revoked the UPDATE permission. Using ISQL it does not allow hte user to update the table but when the UPDATE is done through a stored procedure it accepts it. I want to restrict the update thru stored procedure as well. How do I do that. Waiting for a quick response. Thanks,
|
Answer : REVOKE PERMISSIONS..
|
|
This is actually correct and expected and is well documented in the manuals.
To do what you want, you'll need to either revoke UPDATE permissions from the user who owns the procedure, or revoke EXECUTE permissions on the procedure from this user.
|
|
|
|