在postgresql中查詢(xún)表大小的方法:1.啟動(dòng)postgresql服務(wù);2.登錄postgresql數(shù)據(jù)庫(kù);3.使用數(shù)據(jù)庫(kù);4.使用pg_relation_size函數(shù)查詢(xún);
具體步驟如下:
1.首先,在命令行中啟動(dòng)postgresql服務(wù);
net start postgresql
2.postgresql服務(wù)啟動(dòng)后,在命令行中登錄到postgresql數(shù)據(jù)庫(kù);
psql -h -U
3.登錄到postgresql數(shù)據(jù)庫(kù)后,在postgresql選擇一個(gè)數(shù)據(jù)庫(kù)并使用;
\c text
4.最后,進(jìn)入到數(shù)據(jù)庫(kù)后,在數(shù)據(jù)庫(kù)中使用pg_relation_size函數(shù)即可查詢(xún)表的大小;
select pg_size_pretty(pg_relation_size('表名'));