Is there any way to know how much CPU particular query is utilizing in PostgreSQL?
Take the 2-minute tour
×
Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
pg_stat_activity
and look it up intop
. Or just usepg_view
, for example. (I work for the company, but the tool is free.) – dezso Mar 13 at 12:43