1

Is there any extension available for Postgresql that is similar to SQL Server query store. So that it can help identify performance bottleneck.

SQL Server query store provides information on how many times query executed, resource consumption per query. https://learn.microsoft.com/en-us/sql/relational-databases/performance/monitoring-performance-by-using-the-query-store?view=sql-server-ver15 provides more detail on query store.

1 Answer 1

5

Yes there is such an extension: pg_stat_statements

The pg_stat_statements module provides a means for tracking execution statistics of all SQL statements executed by a server.

Tools like PoWA use this extension and provide others performance metrics that you might be interested in.

answered Nov 15, 2019 at 12:25

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.