sql server - Cant execute this instruction in the database GRANT EXEC sp_configure to user -
i have database called sa-db, in database have user called sa-clientap , need grant him permissions execute sp_configure, when try this, error:
permissions on server scoped catalog views or stored procedures or extended stored procedures can granted when current database master
this tried:
grant exec [sys].[sp_configure] [sa-clientapp] i tried code , uid same error pops up.
how can make work?
how this....
use master go grant exec [sys].[sp_configure] [sa-clientapp]; go
Comments
Post a Comment