Skip to content

Instantly share code, notes, and snippets.

@songfei1983
Created July 7, 2015 01:06
Show Gist options
  • Save songfei1983/e20ba460ba21f1391e19 to your computer and use it in GitHub Desktop.
Save songfei1983/e20ba460ba21f1391e19 to your computer and use it in GitHub Desktop.
テーブルのコラムサイズを調べる ref: http://qiita.com/songfei1983/items/8a9b1fba0ae0513dcd45
select
sum(pg_column_size(the_text_column)) as total_size,
avg(pg_column_size(the_text_column)) as average_size,
sum(pg_column_size(the_text_column)) * 100.0 / pg_relation_size('t') as percentage
from t;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment