SQL Server - 如果这是 sp_spaceused 的输出,我的数据库的大小是多少

发布于 2024-09-27 02:42:52 字数 370 浏览 0 评论 0原文

我运行命令:

EXEC sp_spaceused

输出是: alt text

那么我的数据库有多大? 是 - 4768.25 - 4076.57 = 691.68 MB(第一个表)

还是

19896 KB(第二个表)?

编辑

我正在使用 SQL Server 2005 Express,其“数据库大小”限制为 4 GB。因此,在“数据库大小”的背景下,如果我要计算距离空间限制有多远 - 我应该将未分配的空间视为我的数据库仍然可以使用的空间?

I ran the command:

EXEC sp_spaceused

The output was:
alt text

So what is the size of my database?
Is it - 4768.25 - 4076.57 = 691.68 MB (1st table)

OR

19896 KB (2nd table)?

EDIT

I'm using SQL Server 2005 Express which has a "database size" limit of 4 GB. So in this context of "database size", if I were to calculate how far up to the space limit I am - I should consider the unallocated space as what my database can still use?

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

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

发布评论

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

评论(2

反差帅 2024-10-04 02:42:52

您的数据库大小为 4768.25MB

SQL Server 将分配比当前使用空间更大的数据库文件。此未分配的空间将被填满,直到数据库文件需要再次“增长”

Your database size is 4768.25MB

SQL Server will allocate a database file bigger than the currently used space. This unallocated space is filled up until the database file needs to be 'grown' again

我乃一代侩神 2024-10-04 02:42:52

仅添加 Mitch 的答案以响应您发布的编辑:-

未分配空间是尚未分配给任何数据库对象的空间。

所以,是的,我认为 4076.57 MB 是当前数据库(总大小为 4768.25)仍然可供使用的空间。

但是,请注意,此空间不仅仅用于您的实际数据。此空间包括任何数据库对象使用的任何和所有空间,例如数据、索引、IAM(索引分配映射)页面、GAM(全局分配映射)页面、SGAM(共享全局分配映射)或 PFS(页面可用空间)页面

To just add on to Mitch's answer in response to the edit you have posted :-

Unallocated space is the space that is not yet allocated to any database objects.

So, yes, i would consider 4076.57 MB as the space that your current database with total size of 4768.25 still has available for its use.

However, do note that this space is not just for your actual data. This space includes any and all space used by ANY database object like data,index,IAM (Index Allocation Map) pages, GAM (Global Allocation Map) pages, SGAM (Shared Global Allocation Map), or PFS (Page Free Space) pages

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