当表的行数大于 500k 时,如何快速获取 Service Broker 队列的大小?
当队列非常大时,我试图确定 Service Broker 队列和传输队列的总大小。问题是像下面这样的传统查询不起作用,因为它不是表。有什么想法吗?
EXEC sp_spaceused 'sys.transmission_queue'
SELECT rows FROM sysindexes WHERE id = OBJECT_ID('ConfigMgrDrsQueue') AND indid < 2
I'm trying to determine the total size of a Service Broker Queue and transmission queue when the queue is very large. The problem is traditional querys like the ones below don't work since it's not a table. Any ideas?
EXEC sp_spaceused 'sys.transmission_queue'
SELECT rows FROM sysindexes WHERE id = OBJECT_ID('ConfigMgrDrsQueue') AND indid < 2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Remus 在他的博客中解释了如何操作。基本上,您需要查询底层 B 树的行数。
Remus explains explains how to do it in his blog. Basically you need to query the row count of the underlying b-tree.