Re: deep debug log for psql

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Matthias Apitz <guru(at)unixarea(dot)de>, pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: deep debug log for psql
Date: 2019-11-21 15:24:37
Message-ID: efeeb448-31bd-bd92-c217-695db2886f1e@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 11/20/19 11:12 PM, Matthias Apitz wrote:
>
> Hello,
>
> We found and use for ESQL/C the debug feature:
>
> ECPGdebug(int on, FILE *stream);
>
> with very good results. Is there something similar for the psql
> interpreter to debug the query of complex SQL statements like this
> monster here:
>
> SELECT ha.hnr, count(*) FROM acq_haushalt ha, acq_booking bo WHERE ha.hjahr = 2000 AND ha.brgroup
> WHERE bu.bnr = bo.bnr AND bu.band = bo.band AND bu.exemplar = ( SELECT min(bo2.exemplar) FROM acq_booking b
> WHERE bo2.hnr = bo .hnr
> AND bo2.bnr = bo.bnr AND bo2.band = bo.band)
> AND bu.statusrech IN (0,1) )
> GROUP BY ha.hnr;
>
> The -L logfilename flag of psql is not sufficient enough. It logs only
> the query and the final result.

client_min_messages?:
https://www.postgresql.org/docs/11/runtime-config-client.html#GUC-CLIENT-MIN-MESSAGES

>
> Thanks
>
> matthias
>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Laurenz Albe 2019-11-21 15:28:54 Re: Tablespace setup issue
Previous Message Adrian Klaver 2019-11-21 15:21:35 Re: Isolation of multiple databse instances provided by a single postgres server