Comments
2 comments
-
Sorry to hear that you're experiencing this. Could you run GRANT EXECUTE ON sys.xp_qv TO username? That would be a quick fix.
-
Thanks Robert. That was close but I also had to grant execute permission on another one. Here are both commands that solved my problem:
GRANT EXECUTE ON sys.xp_qv TO [login]
GRANT EXECUTE ON sys.xp_instance_regread TO [login]
Add comment
Please sign in to leave a comment.
The SQL Test error simply says "Failed to retrieve data for this request". plus the SQL Server error says "The EXECUTE permission was denied on the object 'xp_qv', database 'mssqlsystemresource', schema sys. (Microsoft SQL Server, Error: 229)
I really don't want to grant sysadmin permission to all my developers on UAT and PROD.
Thanks