Postgresql 跟踪
Postgresql 上的查询跟踪可能吗?我在带有 OLEDB 接口的 Windows 上使用 9.0。
另外,我需要它是实时的,而不是像默认情况下那样缓冲......
Is query tracing on Postgresql possible? I am using 9.0 on windows with OLEDB interface.
Also, I need it to be in real-time, not buffered like it is by default...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你的意思是在服务器端跟踪语句?
在这种情况下,请将 postgresql.conf 中的参数 log_min_duration 更改为 0。
不需要重启服务器,只需重新加载配置(pg_ctl reload)
I assume you mean tracing the statements on the server side?
In that case, change the parameter log_min_duration to 0 in postgresql.conf.
You don't need to restart the server, just reload the configuration (pg_ctl reload)