"A Palmblad" <adampalmblad@yahoo.ca> writes: > After trying a vacuum of a table, the following error has been occurring: > aers=3D# vacuum XXXXXX; > ERROR: could not access status of transaction 4290052110 > DETAIL: could not open file "/usr/local/pgsql/data/pg_clog/0FFB": No such = > file or directory This isn't anything wrong with pg_clog; it's a trashed tuple header, in particular a trashed transaction number. It happens that the transaction number is the first part of the header to be tested with any great care when a new tuple is visited, so this sort of error is a common symptom of localized data corruption in a table page. > Zero_damaged_pages is on. That only reacts to corrupted page headers, which you seemingly haven't got (or at least, the page header is not so obviously bogus as to trigger the damaged_pages code). Your best bet is probably to track down which page contains the damage and zero it out manually. You can find recipes for doing this in the list archives (try looking for threads that mention pg_filedump, which is a useful tool when you're faced with this sort of thing). regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 4: Don't 'kill -9' the postmaster