Re: Error dropping tables: "ERROR: could not find tuple - Mailing list pgsql-admin

From Arnau
Subject Re: Error dropping tables: "ERROR: could not find tuple
Date
Msg-id 44609355.4090102@andromeiberica.com
Whole thread Raw
In response to Error dropping tables: "ERROR: could not find tuple for trigger "  (Arnau <arnaulist@andromeiberica.com>)
List pgsql-admin
Arnau wrote:
> Hi all,
>
>   I have problems droppping some tables in a DB running on postgreSQL
> 7.4.2. Below you have an example of what is happening:
>
> coltr_demo=# drop table agenda_users_groups;
> ERROR:  could not find tuple for trigger 112070831
>
>   I haven't found anything about how to solve this, anybody knows?
>
> Thanks

The solution I have done is:

select oid from pg_class where relname = 'agenda_users_groups';
    oid
----------
  27970458
(1 row)

begin;
delete from pg_class where oid = 27970458;
delete from pg_depend where objid = 27970458;
delete from pg_constraint where conrelid = 27970458;
commit;

Anybody knows if I should delete anything else?


--
Arnau

pgsql-admin by date:

Previous
From: "System Consult"
Date:
Subject: Re: Locallhost Windows installation
Next
From: "Andy Shellam"
Date:
Subject: Re: Locallhost Windows installation