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.
我在我的数据库表上运行了一个 vaccum,它似乎对我没有帮助。例如,我有一个巨大的表,当我在其上运行真空时,它返回有 87887889 个无法删除的死行版本
我的问题是如何摆脱这些死行
如果常规真空不足,您有两个基本选择。两者都需要全表锁。
真空已满。这不需要额外的磁盘空间,但需要一段时间才能完成。
簇。这会以针对给定索引优化的物理顺序重写表。它需要额外的空间来进行重写,但速度要快得多。
一般来说,如果磁盘空间允许,我建议在维护窗口期间使用 CLUSTER。