Created
July 7, 2015 01:06
-
-
Save songfei1983/e20ba460ba21f1391e19 to your computer and use it in GitHub Desktop.
テーブルのコラムサイズを調べる ref: http://qiita.com/songfei1983/items/8a9b1fba0ae0513dcd45
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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