Is there a way to calculate the row size (in bytes) of a particular table in postgresql / pgadmin3?
Asked
Active
Viewed 77 times
0
Is there a way to calculate the row size (in bytes) of a particular table in postgresql / pgadmin3?
SELECT pg_column_size(t) FROM tbl AS t LIMIT 10More info in this question on SO. – Erwin Brandstetter Jun 20 '13 at 22:07