oid2name.sgml 5.94 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
<sect1 id="oid2name">
 <title>oid2name</title>
 
 <indexterm zone="oid2name">
  <primary>oid2name</primary>
 </indexterm>

 <para>
  This utility allows administrators to examine the file structure used by
  PostgreSQL.  To make use of it, you need to be familiar with the file
  structure, which is described in <xref linkend="storage">.
 </para>
 
 <sect2>
  <title>Overview</title>
  <para>
   <literal>oid2name</literal> connects to the database and extracts OID, 
   filenode, and table name information.  You can also have it show database 
   OIDs and tablespace OIDs.
  </para>
  <para>
   When displaying specific tables, you can select which tables to show by
   using -o, -f and -t.  The first switch takes an OID, the second takes
   a filenode, and the third takes a tablename (actually, it's a LIKE
   pattern, so you can use things like "foo%").  Note that you can use as many
   of these switches as you like, and the listing will include all objects
   matched by any of the switches.  Also note that these switches can only
   show objects in the database given in -d.
  </para>
  <para>
   If you don't give any of -o, -f or -t it will dump all the tables in the
   database given in -d.  If you don't give -d, it will show a database
   listing.  Alternatively you can give -s to get a tablespace listing.
  </para>
  <table>
   <title>Additional switches</title>
   <tgroup cols="2">
    <tbody>
     <row>
      <entry><literal>-i</literal></entry>
      <entry>include indexes and sequences in the database listing.</entry>
     </row>
     <row>
      <entry><literal>-x</literal></entry>
      <entry>display more information about each object shown: tablespace name, 
       schema name, OID.
      </entry>
     </row>
     <row>
      <entry><literal>-S</literal></entry>
      <entry>also show system objects (those in information_schema, pg_toast 
       and pg_catalog schemas)
      </entry>
     </row>
     <row>
      <entry><literal>-q</literal></entry>
      <entry>don't display headers(useful for scripting)</entry>
     </row>
    </tbody>
   </tgroup>
  </table>
 </sect2>
 
 <sect2>
  <title>Examples</title>
 
  <programlisting>
68 69
$ oid2name
All databases:
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
    Oid  Database Name  Tablespace
----------------------------------
  17228       alvherre  pg_default
  17255     regression  pg_default
  17227      template0  pg_default
      1      template1  pg_default

$ oid2name -s
All tablespaces:
     Oid  Tablespace Name
-------------------------
    1663       pg_default
    1664        pg_global
  155151         fastdisk
  155152          bigdisk

$ cd $PGDATA/17228

$ # get top 10 db objects in the default tablespace, ordered by size
$ ls -lS * | head -10
-rw-------  1 alvherre alvherre 136536064 sep 14 09:51 155173
-rw-------  1 alvherre alvherre  17965056 sep 14 09:51 1155291
-rw-------  1 alvherre alvherre   1204224 sep 14 09:51 16717
-rw-------  1 alvherre alvherre    581632 sep  6 17:51 1255
-rw-------  1 alvherre alvherre    237568 sep 14 09:50 16674
-rw-------  1 alvherre alvherre    212992 sep 14 09:51 1249
-rw-------  1 alvherre alvherre    204800 sep 14 09:51 16684
-rw-------  1 alvherre alvherre    196608 sep 14 09:50 16700
-rw-------  1 alvherre alvherre    163840 sep 14 09:50 16699
-rw-------  1 alvherre alvherre    122880 sep  6 17:51 16751

$ oid2name -d alvherre -f 155173
From database "alvherre":
  Filenode  Table Name
----------------------
    155173    accounts

$ # you can ask for more than one object
$ oid2name -d alvherre -f 155173 -f 1155291
From database "alvherre":
  Filenode     Table Name
-------------------------
    155173       accounts
   1155291  accounts_pkey

$ # you can also mix the options, and have more details
$ oid2name -d alvherre -t accounts -f 1155291 -x
From database "alvherre":
  Filenode     Table Name      Oid  Schema  Tablespace
------------------------------------------------------
    155173       accounts   155173  public  pg_default
   1155291  accounts_pkey  1155291  public  pg_default
122

123
$ # show disk space for every db object
124 125
$ du [0-9]* |
> while read SIZE FILENODE
126
> do
127
>   echo "$SIZE       `oid2name -q -d alvherre -i -f $FILENODE`"
128
> done
Bruce Momjian's avatar
Bruce Momjian committed
129 130 131
16            1155287  branches_pkey
16            1155289  tellers_pkey
17561            1155291  accounts_pkey
132 133
...

134 135
$ # same, but sort by size
$ du [0-9]* | sort -rn | while read SIZE FN
136
> do
137 138
>   echo "$SIZE   `oid2name -q -d alvherre -f $FN`"
> done
Bruce Momjian's avatar
Bruce Momjian committed
139 140 141
133466             155173    accounts
17561            1155291  accounts_pkey
1177              16717  pg_proc_proname_args_nsp_index
142 143
...

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
$ # If you want to see what's in tablespaces, use the pg_tblspc directory
$ cd $PGDATA/pg_tblspc
$ oid2name -s
All tablespaces:
     Oid  Tablespace Name
-------------------------
    1663       pg_default
    1664        pg_global
  155151         fastdisk
  155152          bigdisk

$ # what databases have objects in tablespace "fastdisk"?
$ ls -d 155151/*
155151/17228/  155151/PG_VERSION

$ # Oh, what was database 17228 again?
$ oid2name   
All databases:
    Oid  Database Name  Tablespace
----------------------------------
  17228       alvherre  pg_default
  17255     regression  pg_default
  17227      template0  pg_default
      1      template1  pg_default

$ # Let's see what objects does this database have in the tablespace.
$ cd 155151/17228
$ ls -l
total 0
-rw-------  1 postgres postgres 0 sep 13 23:20 155156

$ # OK, this is a pretty small table ... but which one is it?
$ oid2name -d alvherre -f 155156
From database "alvherre":
  Filenode  Table Name
----------------------
    155156         foo

$ # end of sample session.
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
  </programlisting>

  <para>
   You can also get approximate size data for each object using psql.  For
   example, 
  </para>
  <programlisting>
   SELECT relpages, relfilenode, relname FROM pg_class ORDER BY relpages DESC;
  </programlisting>
  <para>
   Each page is typically 8k.  Relpages is updated by VACUUM.
  </para>
 </sect2>
 
 <sect2>
  <title>Author</title>
  <para>
   b. palmer, <email>bpalmer@crimelabs.net</email>
  </para>
 </sect2>

</sect1>
205