| Author |
Message |
randyv
Joined: 28 Feb 2007 Posts: 113
|
Posted: Thu Sep 03, 2009 3:34 pm Post subject: SQL Prompt - Unable to show database objects |
|
|
Don't know what to do about this (i.e., how do I fix it?)
SQL Prompt cannot retrieve objects from <snip>. Possible reasons:
- insufficient memory to cache objects
- invalid permissions for this database
- connection error
- corrupted database
Details:
Server '<snipservername> is not configured for DATA ACCESS. _________________ What we do in life echoes in eternity <><
Randy Volters |
|
| Back to top |
|
 |
Anu Deshpande
Joined: 20 Apr 2009 Posts: 591 Location: Cambridge
|
Posted: Thu Sep 03, 2009 3:57 pm Post subject: |
|
|
Thanks for your post.
I guess it is a permissions issue.
Can you kindly try following permissions for that database from this knowledgebase here ?
Please let us know if this fixes the issue. _________________ Anuradha Deshpande
Product Support
Redgate Software Ltd.
E-mail: support@red-gate.com |
|
| Back to top |
|
 |
randyv
Joined: 28 Feb 2007 Posts: 113
|
Posted: Thu Sep 03, 2009 4:10 pm Post subject: grant what to who? |
|
|
That support article says grant view server state as the only possible suggestion pertaining to SS2008, which is the system I'm getting this error on.
But the error description is not the one I am encountering so I doubt it will work, but I'm willing to try it - one issue; I'm logging in as 'sa' - doesn't 'sa' have this permission by default?
Just makes no sense. _________________ What we do in life echoes in eternity <><
Randy Volters |
|
| Back to top |
|
 |
Anu Deshpande
Joined: 20 Apr 2009 Posts: 591 Location: Cambridge
|
Posted: Thu Sep 03, 2009 4:19 pm Post subject: |
|
|
Thanks for your reply.
I think you should try granting following rights:
1. GRANT VIEW DEFINITION TO [{username}]
2. GRANT VIEW SERVER STATE TO [{username}]
Please let us know if that helped. _________________ Anuradha Deshpande
Product Support
Redgate Software Ltd.
E-mail: support@red-gate.com |
|
| Back to top |
|
 |
Anu Deshpande
Joined: 20 Apr 2009 Posts: 591 Location: Cambridge
|
Posted: Thu Sep 03, 2009 4:37 pm Post subject: |
|
|
If the above solution doesn't work and still you are getting error than your SQL Server needs to be set accordingly.
Can you try executing below query in context of MASTER database:
exec sp_serveroption 'SERVER NAME', 'data access', 'true'
Kindly let us know if this fixes the issue. _________________ Anuradha Deshpande
Product Support
Redgate Software Ltd.
E-mail: support@red-gate.com |
|
| Back to top |
|
 |
randyv
Joined: 28 Feb 2007 Posts: 113
|
Posted: Thu Sep 03, 2009 4:57 pm Post subject: Yes, that worked |
|
|
The sproc worked. _________________ What we do in life echoes in eternity <><
Randy Volters |
|
| Back to top |
|
 |
Anu Deshpande
Joined: 20 Apr 2009 Posts: 591 Location: Cambridge
|
Posted: Fri Sep 04, 2009 8:28 am Post subject: |
|
|
Brilliant!!
Thanks for the update.
Can you kindly let us know which of the solution provided by us solved the issue? _________________ Anuradha Deshpande
Product Support
Redgate Software Ltd.
E-mail: support@red-gate.com |
|
| Back to top |
|
 |
dsheerin
Joined: 25 Sep 2008 Posts: 4 Location: Raleigh, North Carolina
|
Posted: Fri Jun 11, 2010 12:42 pm Post subject: |
|
|
| I have had the same issue and this forum topic was of great help to me also - thanks guys! |
|
| Back to top |
|
 |
AndrewJacksonZA
Joined: 05 May 2010 Posts: 17 Location: Johannesburg, South Africa
|
Posted: Wed Oct 03, 2012 3:43 pm Post subject: |
|
|
| Code: |
| EXEC sp_ServerOption 'SERVER NAME', 'data access', 'true' |
This worked for me, thanks Anu! |
|
| Back to top |
|
 |
|