Difference between revisions of "Pg stat user tables"

From wikieduonline
Jump to navigation Jump to search
Line 13: Line 13:
 
</pre>
 
</pre>
  
*[[Cache hit ratio]]: <code>[[pg_statio_user_tables]]</code>
 
  
 
== [[PostgreSQL VACUUM]] ==
 
== [[PostgreSQL VACUUM]] ==
Line 25: Line 24:
 
== Related terms ==
 
== Related terms ==
 
* <code>[[pg_statio_user_tables]]</code>
 
* <code>[[pg_statio_user_tables]]</code>
 +
*[[Cache hit ratio]]: <code>[[pg_statio_user_tables]]</code>
 +
  
 
== See also ==
 
== See also ==

Revision as of 17:15, 25 August 2021

SELECT 
  relname, 
  100 * idx_scan / (seq_scan + idx_scan) percent_of_times_index_used, 
  n_live_tup rows_in_table
FROM 
  pg_stat_user_tables
WHERE 
    seq_scan + idx_scan > 0 
ORDER BY 
  n_live_tup DESC;


PostgreSQL VACUUM

SELECT
  schemaname, relname,
  last_vacuum, last_autovacuum,
  vacuum_count, autovacuum_count
FROM pg_stat_user_tables;


Related terms


See also

Advertising: