如何检查 SQL Server 中索引视图的大小?
检查表和索引的存储大小很容易,您可以右键单击 SSMS 资源管理器上的表对象,瞧,详细信息会显示在一个漂亮的弹出窗口中。
但由于索引视图的显示方式与普通视图相同,因此 SSMS 中没有可用的存储信息来显示磁盘上当前占用的大小。
是否有其他方法来计算大小(例如通过系统 SP 或类似方法)?
谢谢。
Its easy to check storage sizes for Tables and Indexes, you can right-click the table object on SSMS explorer and voila, the details appear in a nice popup.
But since Indexed Views are displayed the same as Normal Views, there is no storage information avaiable in SSMS to show me the current size taken up on disk.
Is there an alterate way to calculate the size (say via a system SP or similar method)?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在此处使用此查询来查找任何给定索引视图的数据:
给出类似的输出
You can use this query here to find your data for any given indexed view:
Gives an output something like