| schema | name | column | data type |
|---|---|---|---|
| pg_catalog | pg_statio_all_sequences | blks_hit | int8 |
| pg_catalog | pg_statio_all_sequences | blks_read | int8 |
| pg_catalog | pg_statio_all_sequences | relid | oid |
| pg_catalog | pg_statio_all_sequences | relname | name |
| pg_catalog | pg_statio_all_sequences | schemaname | name |
SELECT c.oid AS relid,
n.nspname AS schemaname,
c.relname,
pg_stat_get_blocks_fetched(c.oid) - pg_stat_get_blocks_hit(c.oid) AS blks_read,
pg_stat_get_blocks_hit(c.oid) AS blks_hit
FROM pg_class AS c
LEFT JOIN pg_namespace AS n ON n.oid = c.relnamespace
WHERE c.relkind = CAST('S' AS "char") Home 3D Друк Blog Bring-Up Times Cross-Region Benchmarks Email Forums Mailing Lists Redshift Price Tracker Redshift Version Tracker Replacement System Tables Reserved Instances Marketplace Slack System Table Tracker The Known Universe White Papers