I\'m having problems executing a function.
Here\'s what I did:
In Sql Server Management Studio:
just go to security->schema->dbo
.
Double click dbo, then click on permission tab->(blue font)view database permission
and feel free to scroll for required fields like "execute".
Help yourself to choose usinggrant
or deny
controls. Hope this will help:)
Sounds like you need to grant the execute permission to the user (or a group that they a part of) for the stored procedure in question.
For example, you could grant access thus:
USE zzzzzzz;
GRANT EXEC ON dbo.xxxxxxx TO PUBLIC