From: Bruce Momjian Date: Wed, 12 Jun 2002 23:42:48 +0000 (+0000) Subject: Improve query. X-Git-Tag: REL7_3~1417 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f8795eb71160cbf633602f0fc297cd3a29bf172;p=postgresql Improve query. --- diff --git a/contrib/oid2name/README.oid2name b/contrib/oid2name/README.oid2name index 53d88e23b4..7a0ff1d564 100644 --- a/contrib/oid2name/README.oid2name +++ b/contrib/oid2name/README.oid2name @@ -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; ---------------------------------------------------------------------------