执行 Postgres 分析
在 PostgreSQL 8.4 中,有没有办法知道对表执行最后一次 ANALYZE 和/或 VACUUM 的时间?
我一直在查看文档,后来又查看了 pg_catalog,但找不到任何有用的东西。
In PostgreSQL 8.4, is there a way to know when the last ANALYZE and/or VACUUM has been performed on a table?
I've been looking around in the documentation and later the pg_catalog but not been able to find anything useful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那将是 pg_stat_all_tables
http://www.postgresql.org/docs/9.0 /static/monitoring-stats.html
That would be pg_stat_all_tables
http://www.postgresql.org/docs/9.0/static/monitoring-stats.html
在 PgAdminIII 中(我只是假设这是选择的工具,因为它很棒;)),您可以在统计列中看到这些信息。分别有analyze/vauum 和autoanalyze/autovacuum 的条目。
In PgAdminIII (I just assume that this is the tool of choice since it is great ;)), you see these information in the statistics column. There are entries for analyze/vauum and autoanalyze/autovacuum respectively.