access error sql server 2008
I have created a user but when I try to view a database tables, I'm having the following error messages:
Please note that I am able to login but not having access to the database.
Failed to retrieve data for this request.
(Microsoft.SqlServer.Management.Sdk.Sfc)
ADDITIONAL INFORMATION:
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
The SELECT permission was denied on the object 'extended_properties', database 'mssqlsystemresource', schema 'sys'. (Microsoft SQL Server, Error: 22开发者_如何学运维9)
Did you map the login to the user?
EXEC SP_Change_Users_Login 'Update_One','user','login',Null
- In the Secutity -> Logins -> userName, check the database is selected in the list or not.
- In the Database -> Security -> UserName check the role member has sufficient priviliges.
Check out this one
Another marked an answer
More Links
精彩评论