> > Now that we have numeric file names, I would like to have a command I
> > can run from psql that will dump a mapping of numeric file name to table
> > name, i.e.,
> >
> > 121233 pg_proc
> > 143423 pg_index
>
> select oid, relname from pg_class;
No. select relfilenode, relname from pg_class - in theory relfilenode may
differ
from relation oid.
Vadim