Improve query.

This commit is contained in:
Bruce Momjian 2002-06-12 23:42:48 +00:00
parent 7e20a2e74f
commit 4f8795eb71

View File

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