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.

link|improve this question

80% accept rate
any details about what does your application look like and how it accesses database? – pavel_kazlou Nov 21 '11 at 7:06
feedback

2 Answers

Turn on the server log:

log_statement = all

This will log every call to the database server.

I would not use log_statement = all on a productive server. Produces huge log files. The manual about logging-parameters.

log_statement (enum)

Controls which SQL statements are logged. Valid values are none (off), ddl, mod, and all (all statements).

Resetting the log_statement parameter requires a server reload (SIGHUP). A restart is not necessary. Read the manual on how to set parameters.

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 Tools ->Server status.

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).

link|improve this answer
Brandstetter I will just see logs and turn it off. Is it enough just to make log_statement = all? I have opened Server status it asked me something about installing a package but it opened a window and writes: Logs are not available for this server. Should I restart my postgresql? – kamaci Nov 21 '11 at 7:28
@kamaci: I amended my answer with additional information. Follow the links I provided for more. – Erwin Brandstetter Nov 21 '11 at 7:45
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

  • log_destination = 'stderr,csvlog'
  • logging_collector = on

In order to log all queries, very usefull for new installations, set min. execution time for a query

  • log_min_duration_statement = 0

In order to view active Queries on your database, use

  • SELECT * FROM pg_stat_activity

To log specific queries set query type

  • log_statement = 'all' # none, ddl, mod, all

This is a good link For more information on Logging queries

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.