Mention vacuum for relpages.

This commit is contained in:
Bruce Momjian 2002-06-13 00:54:05 +00:00
parent 9bba67aa9b
commit 2ed878d31d
1 changed files with 2 additions and 1 deletions

View File

@ -115,10 +115,11 @@ $ du -s * |
2135 18735 = postgres
..
This can be done in psql with: (each page is typically 8k)
This can be done in psql with:
test=> SELECT relpages, relfilenode, relname FROM pg_class ORDER BY relpages DESC;
Each page is typically 8k. Relpages is updated by VACUUM.
---------------------------------------------------------------------------