Add mention of query showing pages used.

This commit is contained in:
Bruce Momjian 2002-06-12 23:41:50 +00:00
parent e6e577490d
commit 7e20a2e74f
1 changed files with 4 additions and 0 deletions

View File

@ -101,6 +101,10 @@ $ du * | while read SIZE OID
1950 23903 = customers
...
This can be done in psql with: (each page is typically 8k)
test=> SELECT relpages, relname FROM pg_class ORDER BY relpages DESC;
---------------------------------------------------------------------------