How can pg_dump be not reliable? What options are you passing to pg_dump? To restore are using psql or pg_restore? In order to us pg_restore you should give the -Fc option to pg_dump...
Common use: pg_dump dbname > filename -> restore with: psql dbname > filename pg_dump -Fc dbname > filename -> restore with: pg_restore -d dbname filename You may need to give -i option if pg_dump's version doesn't match server's version. Check postgresql's docs. -------------------- m2f -------------------- -- http://www.openobject.com/forum/viewtopic.php?p=40717#40717 -------------------- m2f -------------------- _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman2/listinfo/tinyerp-users
