you can use pg_dump it is a tool that come with postgresql server from you console type the following:
pg_dump <db_name> > <output_file> then to restore your database you can use psql tool: psql <db_name> < <input_file> for more details on backup and restoring databases in postgresql, have a look here (http://www.postgresql.org/docs/8.1/static/backup.html) ------------------------ Regards, Abdelrahman -------------------- m2f -------------------- -- http://www.openobject.com/forum/viewtopic.php?p=39619#39619 -------------------- m2f -------------------- _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman2/listinfo/tinyerp-users
