Sql Server - 如何计算数据库中每个表中某些行的大小?

发布于 2024-08-29 20:24:32 字数 329 浏览 5 评论 0原文

如何计算每个表中仅某些行的大小?

例如,使用代码:

EXEC sp_spaceused 'myTable'

您可以获得所有行的大小,但是我想计算的不是单个表的大小,而是所有表的大小,并使用相同的子句对于每一个,伪代码中都是这样的:

foreach(Table myTable in Database)
  EXEC sp_spaceused 'myTable WHERE AppId='abc''

我怎样才能用 T-SQL 实现这一点?

预先感谢

编辑:为了更好的澄清

How can i calculate the size of only some rows for each table?

For example, with the code:

EXEC sp_spaceused 'myTable'

you obtain the size of all rows, however i want to calculate the size not of one single table, but all of them, and using the same clause for each one, something like this in pseudo-code:

foreach(Table myTable in Database)
  EXEC sp_spaceused 'myTable WHERE AppId='abc''

How can i achieve this with T-SQL?

Thanks in advance

EDIT: for better clarification

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁与争疯 2024-09-05 20:24:32
-- Plop the data into a temp table
Select myFields into #tmpdata from myTable where myCondition = 'foo'

use tempdb
GO
exec sp_spaceused #tmpdata
-- Plop the data into a temp table
Select myFields into #tmpdata from myTable where myCondition = 'foo'

use tempdb
GO
exec sp_spaceused #tmpdata
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文