콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
6889 화면

Is a database dump the same as a backup? Is it done from within OpenERP or at a command prompt? There is a command in PostgreSQL 9.3 bin directory pg_dump is this the command used?

아바타
취소
베스트 답변

Yes.

It is done via the Manage Databases link on the login page.

What actually happens is that OpenERP calls the relevant PostgreSQL commands. The exact format of the commands that OpenERP uses for backup and restore is below.

For backup

pg_dump --format=c --no-owner --username=<> --host=<> --port=<> <dbname>

For restore:

pg_restore --no-owner --dbname=<>
아바타
취소

... and you can even pipe pg_dump with pg_restore to replicate a test environment from a production one.

I cannot find the Manage Database link in the online verion?