在共享托管 SQL Server 环境中加速 SQL Management Studio 的对象资源管理器
当我在 SQL Management Studio Express 的对象资源管理器中展开“数据库”文件夹时,它往往会加载我的共享主机上存在的所有数据库。这会导致很长的延迟(应用程序完全冻结,有时还会崩溃)。
我只需要查看一个数据库的对象树。
有什么办法可以克服这个问题吗?
When I expand the "databases"-folder in the Object Explorer in SQL Management Studio Express it tends to load ALL databases that exists on my shared host. This results in very long delays (the app freezes totally and sometimes also crashes).
I just need to see the object tree of one database.
Is there any way to overcome this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Arvixe 发布了一个解决方案,可以使数据库加载速度变得更快。
如果您有兴趣,请在此处查看。
Arvixe have posted a solution that makes the loading of databases very much faster.
Take a look at it here, if you're interested.
也许。
运行此命令:
DENY VIEW ANY DATABASE TO public
并希望您使用的登录名是 dbo...示例 1 和 SO 示例 2
Perhaps.
Run this:
DENY VIEW ANY DATABASE TO public
and hope the login you are using is dbo...Example 1 and SO Example 2