Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
备份一个 Sql Server 2008 r2 事务日志清理文件空间但不缩小它?真的吗?
正确的。从技术上讲,在任何版本的 SQL Server 中备份事务日志都会将尽可能多的空间标记为可重用,但不会缩小文件。这是设计使然。该文件旨在增长到记录备份之间的事务所需的大小,以避免与文件增长事件(除其他外)相关的性能问题。如果您遇到磁盘空间问题,则需要更频繁地进行日志备份,将其设置为 SIMPLE 模式(如果适合您的恢复策略),或增加磁盘空间。
在大多数情况下,缩小文件并不是最佳做法。