Hi, First thing I would've done is to insert the two corrupted rows into pg_attribute. The best way to get the data for the inserts is to restore a dump of the DB into empty database and retriever the rows by running select over pg_attribute in restored DB. Of You have EMS manager for postgres you can export the selected rows to sql script as inserts. After-hours running updates on corrupted DB run an update on pg_class. If you don't have EMS write inserts yourself based on selected rows. Since it's only 2 rows it will be quick. Hope this helped You. Regards Luke