Guest User

Untitled

a guest
Jun 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. SELECT query, calls, total_time, rows,
  2. 100.0 * shared_blks_hit / nullif(shared_blks_hit + shared_blks_read, 0) AS hit_percent
  3. FROM pg_stat_statements ORDER BY total_time DESC LIMIT 100;
Add Comment
Please, Sign In to add comment