想了解 ASP.Net Web 应用程序中的 SQL Azure 可用空间

发布于 2024-12-09 17:07:03 字数 108 浏览 0 评论 0原文

我正在对我的网络应用程序进行冒烟测试,因为我需要检查总空间中的可用数据库空间,以便在冒烟测试页面上显示警报。我已连接到 Sql Azure 数据库。我该怎么做,任何人都可以建议我在这里实施这个冒烟测试?

I am doing smoke test of my web application and in that I am required to check free database space out of total space to display alert on smoke test page. I am connected to Sql Azure database. How can i do this, anyone can suggest me here to implement this smoke test??

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

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

发布评论

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

评论(1

伴梦长久 2024-12-16 17:07:03

Ryan Dunns 的博客有一个关于计算 SQL Azure 数据库的大小的条目
即:

select
  sum(reserved_page_count) * 8.0 / 1024
from
  sys.dm_db_partition_stats
GO

select
  sys.objects.name, sum(reserved_page_count) * 8.0 / 1024
from
  sys.dm_db_partition_stats, sys.objects
where
  sys.dm_db_partition_stats.object_id = sys.objects.object_id
group by sys.objects.name

运行查询并将其显示在冒烟测试页面上 - 或者按计划运行查询并在接近数据库最大大小时发出警报。

Ryan Dunns's Blog has a entry on Calculating The Size Of Your SQL Azure Database
namely:

select
  sum(reserved_page_count) * 8.0 / 1024
from
  sys.dm_db_partition_stats
GO

select
  sys.objects.name, sum(reserved_page_count) * 8.0 / 1024
from
  sys.dm_db_partition_stats, sys.objects
where
  sys.dm_db_partition_stats.object_id = sys.objects.object_id
group by sys.objects.name

run the query and display it on your smoke test page - or run the query on a schedule and send out an alert as you approach your db max size.

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