一个记录集中使用 sp_space 形式的结果
我想收集所有数据库统计信息,其中包含数据库大小和未分配大小。 我正在尝试使用 sp_spaceused 存储过程,但不幸的是我无法将结果(此过程为每个数据库获取两个结果集)写入临时表。
我的想法是修改这个程序的代码并将其另存为新的。 我应该改变什么?
连接两个 select 语句就足够了吗?
I would like to collect all databases statistics which contain database size and unallocated size.
I'm trying to use sp_spaceused stored procedure, but unfortunately I am unable to write results (this procedure get two result sets for each database) to temporary table.
My idea is to modify code of this procedure and save it as new one.
What I should change?
It will be enough to concatenate two select statements?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我刚刚从 2008R2 sp_spaceused 创建了一个简单版本。它作为查询运行,并返回与 sp_spaceused 相同的数据(不带参数),但在一个结果集中。我还添加了 dbsize 和 logsize 字段,因为为什么不呢。
sp_spaceused
的结果:上述查询的结果:
I just created an easy version of this, from the 2008R2 sp_spaceused. It runs as a query, and returns the same data as sp_spaceused (with no parameters) but in one result set. I also added dbsize and logsize fields, because why not.
Result from
sp_spaceused
:Result from above query:
您需要创建自己的版本,仅包含一个结果集。在 2000 年以后的版本中,我根本不会容忍这种情况,因为从 DMV 中获取此信息要容易得多。
如果这些列不完全是您想要在表中出现的列,或者如果您想要所有 KB 或所有 MB,您可以将它们注释掉/移动它们/调整数学。
You'll need to create your own version with only one resultset. This is not something I would condone at all in versions later than 2000 because this information is much easier to derive from the DMVs.
If those aren't exactly the columns you want in your table, or if you want all KB or all MB, you can comment them out / move them around / adjust the math.
试试这个:(SQL 2016)
Try this: ( SQL 2016 )