Being able to tell how much time a query takes to run can be very useful when you’re trying to optimize your queries.
In this post, we’ll show you how to do this using the psql
command-line tool.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hello,
One of the most straightforward ways to time a query is to use the following:
Note that you would need to have the psql command installed on your machine:
https://www.digitalocean.com/community/tutorials/how-to-install-postgresql-on-ubuntu-20-04-quickstart
Output:
This is going to be enabled for your current session only. Once you open a new session, the query timing will be disabled, so you will have to enable it again.
Hope that this helps!
Best,
Bobby