The SELECT permission was denied on the object 'sysobjects', database 'mssqlsystemresource', schema 'sys'

后端 未结 7 1650
闹比i
闹比i 2020-12-05 22:18

SETUP: SQL Server 2005 & DotNetNuke 05.01.02.

This started with me trying to install a DNN Module that had \"select * from dbo.sysobjects\" in it\'s SQL scripts

7条回答
  •  囚心锁ツ
    2020-12-05 23:16

    It looks like someone might have revoked the permissions on sys.configurations for the public role. Or denied access to this view to this particular user. Or the user has been created after the public role was removed from the sys.configurations tables.

    Provide SELECT permission to public user sys.configurations object.

提交回复
热议问题