减少 MS SQL 数据库备份文件大小的方法

发布于 2024-07-19 07:05:35 字数 145 浏览 9 评论 0原文

这个问题可能会让人微笑,真的,今天的硬盘空间就像泥土一样便宜。 但尽管如此,由于互联网连接速度极慢(世界大部分地区仍然如此),从不同分支机构传输备份可能会让人感到非常痛苦。

那么,您对如何将数据库文件大小减小到最小有什么想法吗? 绝对欢迎任何想法。

This question might make one smile, really, HDD space is as cheap as dirt today. But nevertheless, with extremely slow internet connections (which is still the case in the major part of the world) transferring backups from different branches might be real pain in the back.

So, do you have any ideas on how to decrease database file size to a bare minimum? Absolutely any ideas are welcome.

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

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

发布评论

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

评论(3

梦途 2024-07-26 07:05:35
  1. 压缩备份。
  2. 分成多个文件组,以便您可以单独备份文件。
  3. 备份前删除索引。 在执行此操作之前,您可能需要在本地复制数据库。
  4. 在单独的文件组上有索引,这样您就不必备份它们。
  5. 将文本/二进制/图像数据放在单独的文件组中。
  6. 进行增量备份。
  7. http://www.serverfault.com 上询问此问题
  1. Zip the backup.
  2. Divide into multiple filegroups so you can backup files separately.
  3. Drop indexes before backup. You might want to copy the DB locally before doing this.
  4. Have indexes on a separate filegroup so you don't have to back them up.
  5. Put text/binary/image data on a separate filegroup.
  6. Do incremental backups.
  7. Ask this question on http://www.serverfault.com
把昨日还给我 2024-07-26 07:05:35

如果您只谈论备份,那么有一些 SQL 备份解决方案可以提供备份压缩。 SQL Server 2008 还内置了备份压缩功能。

请参阅:Red Gate 的 SQL Backup Pro

或这里是各种产品: http://www.mssqltips.com/products.asp?catid=15< /a>

如果您正在谈论实际减少数据库本身的大小 - 选择正确的(=最小)数据类型,使用维护计划来压缩和回收数据库空间,不要过度索引(这总是占用大量空间)等。

马克

If you're only talking about the backups, there's a few SQL Backup solutions out there that offer backup compression. SQL Server 2008 also has backup compression built-in.

See: Red Gate's SQL Backup Pro

or here is a list of various products: http://www.mssqltips.com/products.asp?catid=15

If you're talking about actually reducing the size of the database per se - pick the right (= minimal) data types, use maintenance plans to compress and reclaim space from the database, don't over-index (that always uses lots of space) etc.

Marc

茶底世界 2024-07-26 07:05:35

你尝试过压缩吗? 数据库文件往往可以很好地压缩,因为它们通常主要是文本。

Have you tried compression? Database files tend to compress up really well since they are usually mostly text.

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