"Remi" <gemegesola(at)retemail(dot)es> writes:
> Y have import a table of PostgreSQL 7.0.3 in the PostgreSQL 7.2.1 with
> PhpPgAdmin and a file.sql below:
> ERROR: pg_aclcheck: class "mensajes_mensajeid_seq" not found
Looks like you (or PG 7.0.3's pg_dump) forgot to include the
CREATE SEQUENCE mensajes_mensajeid_seq;
command. You will want to do that, and probably also do a setval()
to set the sequence to whatever count it should have.
regards, tom lane