Is there an easy way to monitor Postgres db queries in a (Windows XP) environment. I'm testing some new code and suspect that in some cases queries are being duplicated/repeated under certain conditions.
What is the e开发者_运维技巧asiest/best way to do this - I just need something simple - basically the timestamp and syntax of the query.
Just add the following line into the config file:
log_min_duration_statement = 0
After a restart your logfile contains all statements.
精彩评论