{"id":522,"date":"2011-07-29T15:52:53","date_gmt":"2011-07-29T13:52:53","guid":{"rendered":"http:\/\/locallost.net\/?p=522"},"modified":"2011-11-13T23:08:42","modified_gmt":"2011-11-13T22:08:42","slug":"postgresql-table-and-index-size","status":"publish","type":"post","link":"https:\/\/locallost.net\/?p=522","title":{"rendered":"Postgresql table and index size"},"content":{"rendered":"<p>Here is a Postgresql requests which will allows you to view the size of your tables with their idx_scan and seq_scan counts.<\/p>\n<pre>SELECT s.schemaname, s.relname, c.oid, c.relfilenode, s.seq_scan,s.idx_scan,\r\n       c.relpages AS pages\r\n  FROM pg_stat_all_tables AS s, pg_class AS c\r\n  WHERE s.relname = c.relname\r\n  AND s.schemaname IN (SELECT nspname FROM pg_namespace WHERE oid = c.relnamespace)\r\n  AND ( s.schemaname = 'public' OR s.schemaname = 'pg_toast' );<\/pre>\n<p>Another one to view the size of your indexes :<\/p>\n<pre>SELECT s.schemaname, s.relname, s.indexrelname,  c.oid, c.relfilenode,\r\n       c.relpages AS pages\r\n  FROM pg_stat_all_indexes as s, pg_class AS c\r\n  WHERE s.indexrelname = c.relname\r\n  AND s.schemaname IN (SELECT nspname FROM pg_namespace WHERE oid = c.relnamespace)\r\n  AND ( s.schemaname = 'public' OR s.schemaname = 'pg_toast' );<\/pre>\n<p>The size is reported in the `pages&rsquo; column, and in most case one page is 8KB (postgresql compiled with default settings)\u00a0.<\/p>\n<p>The `seq_scan&rsquo; and `idx_scan&rsquo; allows you to view own many sequential scans and index scans are performed on your table.\u00a0Too many sequential scans on a huge table might be a sign for a missing index that could help traverse the table more\u00a0efficiently.<\/p>\n<p>These statistics might help you optimize your requests\/indexes, and to fine tune your Postgresql shared_buffers parameter.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here is a Postgresql requests which will allows you to view the size of your tables with their idx_scan and seq_scan counts. SELECT s.schemaname, s.relname, c.oid, c.relfilenode, s.seq_scan,s.idx_scan, c.relpages AS pages FROM pg_stat_all_tables AS s, pg_class AS c WHERE s.relname &hellip; <a href=\"https:\/\/locallost.net\/?p=522\">Continuer la lecture <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[4,17],"tags":[],"class_list":["post-522","post","type-post","status-publish","format-standard","hentry","category-code","category-system"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p2Bei9-8q","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/locallost.net\/index.php?rest_route=\/wp\/v2\/posts\/522","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/locallost.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/locallost.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/locallost.net\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/locallost.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=522"}],"version-history":[{"count":8,"href":"https:\/\/locallost.net\/index.php?rest_route=\/wp\/v2\/posts\/522\/revisions"}],"predecessor-version":[{"id":603,"href":"https:\/\/locallost.net\/index.php?rest_route=\/wp\/v2\/posts\/522\/revisions\/603"}],"wp:attachment":[{"href":"https:\/\/locallost.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=522"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/locallost.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=522"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/locallost.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=522"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}