Write for Us
Error Message:Msg 15247, Level 16, State 1, Procedure sp_configure, Line 94User does not have permission to perform this action.
Severity level:16.
Description:This error message appears when you try to run a statement for which your user does not have appropriate permission.
Consequences:The T-SQL statement can be parsed, but causes the error at runtime.
Resolution:Errors of the Severity Level 16 are generated by the user and are corrigible by the user. The statement cannot be executed this way. You must have apprpriate permissions to execute this statement.
Versions:All versions of SQL Server.
Example(s):USE Master;GODROP LOGIN MyUser;GOCREATE LOGIN MyUser WITH PASSWORD = 'abc';USE Northwind;DROP USER MyUser;CREATE USER MyUser FOR LOGIN MyUser WITH DEFAULT_SCHEMA = dbo;GOSETUSER 'MyUser'GOEXEC sp_configure 'allow updates', 1RECONFIGUREGOSETUSER
Remarks:In the above example we try to change as user MyUser via sp_configure the value for the 'allow updates' option to 1. Because this action can only be performed by members of the sysadmin group, the error is raised.