Re: Is there any tool which will help me run and explain analyze about 150 queries?

2023-04-07 Thread Jerry Sievers
kunwar singh writes: > Hi Listers, > Anyone here use such a tool for Postgres? Any recommendations? > > Say I have 150 queries in Postgres 11 and I want to upgrade to Postgres 15. I > want to run explain analyze for 150 in both versions for comparative > analysis. > > I am looking for the easie

Re: Is there any tool which will help me run and explain analyze about 150 queries?

2023-04-07 Thread kunwar singh
Thanks Kyle. I am also trying to get it working :). @Archilleas ,Thanks for your inputs. Appreciate it. I am further interested in learning if we can automate the generation/creation of foo.sql by including queries with bind variables defined and bind values populated ( speaking in Oracle linguis

Re: Is there any tool which will help me run and explain analyze about 150 queries?

2023-04-07 Thread kyle Hailey
In my opinion, Datadog is the best Postgres monitor available, but it doesn't have a feature that has been discussed. However, you can use auto_explain to analyze long-running queries by setting a limit. I recently enabled it in GCP Cloud SQL, but I haven't seen any results in the logs yet. I need

Re: Is there any tool which will help me run and explain analyze about 150 queries?

2023-04-07 Thread Achilleas Mantzios
Prepend "EXPLAIN ANALYZE " on every statement : cat foo.sql  | awk '{print " EXPLAIN (ANALYZE, BUFFERS, TIMING, SUMMARY) " $0}' | psql testdb -f - Στις 7/4/23 20:57, ο/η kunwar singh έγραψε: Hi Listers, Anyone here use such a tool for Postgres? Any recommendations? Say I have 150 queries in

Is there any tool which will help me run and explain analyze about 150 queries?

2023-04-07 Thread kunwar singh
Hi Listers, Anyone here use such a tool for Postgres? Any recommendations? Say I have 150 queries in Postgres 11 and I want to upgrade to Postgres 15. I want to run explain analyze for 150 in both versions for comparative analysis. I am looking for the easiest way to do it with a tool :) -- Che

Re: Query unable to utilize index without typecast to fixed length character

2023-04-07 Thread ahi
You are right we should move from character(N) to text, however the explicit typecast is also required for the numeric column not just the character one On Thu, Apr 6, 2023 at 4:50 PM Tom Lane wrote: > ahi writes: > > CREATE TABLE public.marketplace_sale ( > > log_index integer NOT NULL, >