Re: Which queries have run query trace form .exe.

From: Ron <ronljohnsonjr(at)gmail(dot)com>
To: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: Which queries have run query trace form .exe.
Date: 2019-01-07 13:49:16
Message-ID: 0489019f-46dc-575a-5b16-82a554f29380@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 1/7/19 6:52 AM, Vimal Kanzariya wrote:
> *Hello,*
>
> I need find out some database operation which is executed form One of the
> .exe. I have installed that .exe into my system and once i executed that
> .exe it is executed some operation into PostgreSQL 9.5 (version 1.22.1).
> So i want to know what operation done by that .exe into which table. is
> there any tool or any other way to find out database operation executed
> form .exe.?

Look at the log_* options in postgresql.conf.
https://www.postgresql.org/docs/9.5/runtime-config-logging.html

Here's an example:
log_destination = 'stderr'
logging_collector = on
log_directory = '/Database/9.6/pg_log'
log_filename = 'postgresql-%F_%H.log'
log_truncate_on_rotation = off
log_rotation_age = 1h
log_rotation_size = 0
client_min_messages =  log
log_min_messages = info
log_min_error_statement = info
log_line_prefix = '%m %r %u %d %p %i %a %e '

--
Angular momentum makes the world go 'round.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Alexander Farber 2019-01-07 13:50:23 Not sure which part of the query needs optimization
Previous Message Vimal Kanzariya 2019-01-07 12:52:27 Which queries have run query trace form .exe.