I have a PostgreSQL DD at my computer and I have an application that runs queries on it. How can I see which queries has run at my DB? I use a Linux computer and pgadmin.
feedback
|
|
Turn on the server log:
This will log every call to the database server. I would not use
Resetting the Don't confuse the server log with pgAdmin's log. Two different things! You can also look at the server log files in pgAdmin, if you set it up correctly. Have a look at pgAdmin can only read the server logs if the server is on the same machine and all is set up accordingly. Read more about the server status window in the manual for pgAdmin. Latest version is 1.14. Be sure to be up to date. I prefer to read the server log files with vim (or any editor of your choice). | |||||
feedback
|
|
PostgreSql is very advanced when related to logging techniques Logs are stored in Installationfolder/data/pg_log folder. While log settings are placed in postgresql.conf file. Log format is usually set as stderr. But CSV log format is recommended. In order to enable CSV format change in
In order to log all queries, very usefull for new installations, set min. execution time for a query
In order to view active Queries on your database, use
To log specific queries set query type
This is a good link For more information on Logging queries | |||
|
feedback
|