Re: FW: Duplicate oids! - Mailing list pgsql-hackers

From Tom Lane
Subject Re: FW: Duplicate oids!
Date
Msg-id 5330.1040050761@sss.pgh.pa.us
Whole thread Raw
In response to Re: FW: Duplicate oids!  (Steve King <steve.king@ecmsys.co.uk>)
List pgsql-hackers
Steve King <steve.king@ecmsys.co.uk> writes:
> I've now got a copy of pg_filedump and compiled it, can you tell me the
> command line parameters to pass it (and the file that I must process) so I
> can give you exactly what you require.

I'd recommend
pg_filedump -f -i -R <blocknum> <filename>

where <blocknum> is whatever page you need to look at (the high part of
the TIDs of the bad tuples), and <filename> is going to be of the form
$PGDATA/base/<dbnum>/<filenum>

You get the DB number from
select oid from pg_database where datname = 'yourdbname';

and the file number from
select relfilenode from pg_class where relname = 'yourtablename';
        regards, tom lane


pgsql-hackers by date:

Previous
From: Shridhar Daithankar
Date:
Subject: Re: Big 7.4 items
Next
From: Bruce Momjian
Date:
Subject: Re: Big 7.4 items