Re: pg_clog problem (PG version 7.4.5)

From: "Jim Buttafuoco" <jim(at)contactbda(dot)com>
To: "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com>
Cc: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: pg_clog problem (PG version 7.4.5)
Date: 2005-01-22 17:06:46
Message-ID: 20050122170622.M28702@contactbda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

didn't work.

ERROR: could not access status of transaction 1076101119
DETAIL: could not read from file "/usr/local/pgsql/data/pg_clog/0402" at offset 57344: Success

any more ideas?

---------- Original Message -----------
From: "Joshua D. Drake" <jd(at)commandprompt(dot)com>
To: jim(at)contactbda(dot)com
Cc: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>
Sent: Sat, 22 Jan 2005 08:00:25 -0800
Subject: Re: [HACKERS] pg_clog problem (PG version 7.4.5)

> Jim Buttafuoco wrote:
>
> >hackers,
> >
> >I am having a problem with table (identified by pg_dump). I get the follow error when I try to COPY the table to
> >stdout (or /dev/null).
> >
> >DB=# copy rnk to '/dev/null';
> >ERROR: could not access status of transaction 1076101119
> >DETAIL: could not open file "/usr/local/pgsql/data/pg_clog/0402": No such file or directory
> >
> >Pg version is
> >select version();
> > version
> >-------------------------------------------------------------------------------------------------
> > PostgreSQL 7.4.5 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.3.4 (Debian 1:3.3.4-6sarge1)
> >
> >I do have a good backup from the day before, if needed. is there a magic command to get me out of this?
> >
> >
> You could try creating that file by writing a bunch of zeros to it, for
> example:
>
> Shutdown PostgreSQL
> Then run the following command in $PGDATA/pg_clog
> dd bs=8K count=1 if=/dev/zero of=<filename>
>
> Where the filename is the name of the file missing.
>
> No promises though.
>
> Sincerely,
>
> Joshua D. Drake
>
> >Thanks
> >Jim
> >
> >
> >
> >---------------------------(end of broadcast)---------------------------
> >TIP 8: explain analyze is your friend
> >
> >
>
> --
> Command Prompt, Inc., home of Mammoth PostgreSQL - S/ODBC and S/JDBC
> Postgresql support, programming shared hosting and dedicated hosting.
> +1-503-667-4564 - jd(at)commandprompt(dot)com - http://www.commandprompt.com
> PostgreSQL Replicator -- production quality replication for PostgreSQL
------- End of Original Message -------

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Jim C. Nasby 2005-01-22 17:08:23 Re: Extending System Views: proposal for 8.1/8.2
Previous Message Joshua D. Drake 2005-01-22 16:00:25 Re: pg_clog problem (PG version 7.4.5)