'odoo 11 Is there any difference if we take dump from Postgres and from Odoo Backup?
In odoo 11 which will be suggested backup and restore process,
- Dump and restore from postgresql or
- using Odoo to take backup and restore it.
I want to know, which process will give complete data including attachments?
Solution 1:[1]
Both
- Dump and restore from PostgreSQL
After your dump and restore sql data you have to restore filestore too, you can find the filestore for your data base, by default windows:
C:\Users\YourUser\AppData\Local\OpenERP S.A\Odoo\filestore\database_name
, linux:/opt/odoo/.local/share/Odoo/filestore/database_name
. Restart your odoo server and reload your browser.
- using Odoo to take backup and restore it.
In
Backup Database
wizard you should selectzip(includes filestore)
option.
I hope this answer can be helpful for you.
Solution 2:[2]
Odoo Backup can include all of your attached files as well (your "filestore" directory)
Odoo Backup may only be restored from your last Odoo Backup so all data entered since that point is lost forever.
PostgreSQL does not back up your "filestore" so no attachments are backed up.
PostgreSQL can "log ship" your database so that you can roll-back a database in case of disaster
If you have an experienced PostgreSQL administrator, is makes sense to have a proper backup/log shipping setup in PostgreSQL.
If you want to spin up a test server, using Odoo Backup can be very helpful; just restore the backup to a test server. Note: you must ensure that the test server is not connected to the internet.
My company uses both methods of backup together for provide a more robust solution.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Gautam Bothra |
Solution 2 | frozenjim |