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. That failed with the following error:

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

I logged into the database via SQL Server Management Studio as the DNN user account, and I get the same error when I try and perform a SELECT on the sysobjects view.

I tried to grant the DNN user account explicit SELECT permission to that view. When I check it by going to Security -> Users -> DNNUserLogin-> right-click -> Properties -> Securables and scroll down to find the sys.sysobjects view, it says this user account has explicit permissions for dbo: And the SELECT checkbox is checked. But I still cannot perform a select on the sysobjects view as that DNN user account.

What am I doing wrong? How can I make this work?

link|improve this question

75% accept rate
feedback

4 Answers

up vote 3 down vote accepted

Solved. This was a problem with the user having deny privileges as well; in my haste to grant permissions I basically gave the user everything. And deny was killing it. So as soon as I removed those permissions it worked. Sorry everyone; false alarm! Dumb programmer at work!

link|improve this answer
feedback

put the DNN user in the db_owner role

link|improve this answer
2  
This is like taking care of your gopher problem with dynamite. While this will resolve the error, it has a TON of side-effects, like removing any security restrictions on your application, essentially letting an attacker potentially exploit any bugs in DNN to do whatever they want with your data. – rwmnau Sep 25 '09 at 5:40
rwmnau - please tell us what we should do instead – user178822 Sep 25 '09 at 19:39
Grant only permissions that are really necessary. Like Chris did. – Arthur Sep 27 '09 at 17:36
feedback

Execute this code on a good server which will provide you the complete rights for PUBLIC role. Copy the output and paste to the server with the issue. Execute. Try logging in again. It fixed our problem.

SELECT SDP.state_desc, SDP.permission_name, SSU.[name] AS "Schema", SSO.[name], SSO.[type]
FROM sys.sysobjects SSO INNER JOIN sys.database_permissions SDP ON SSO.id = SDP.major_id 
   INNER JOIN sys.sysusers SSU ON SSO.uid = SSU.uid
ORDER BY SSU.[name], SSO.[name]
link|improve this answer
feedback

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

Provide SELECT permission to public user sys.configurations object.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.