Hi,
How can i restore my odoo .dump file (buckup file), How can i import this .dump file to new database ?
Thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
How can i restore my odoo .dump file (buckup file), How can i import this .dump file to new database ?
Thanks
Hi Wiem
Please go through the blog, Part 2 will help you.
https://medium.com/@nikhilkrishnan/how-to-restore-your-psql-database-for-odoo-fc7b0bdcfe28
Or go through
https://www.odoo.com/forum/help-1/question/how-to-setup-a-regular-postgresql-database-backup-4728
Or
Thanks
Hello,
first create new database using below command in terminal
createdb database_name
now restore the .dump file using below command
pg_restore -c -d [database_name] [dumpfile_name].dump
I use the method described above or using the database manager "/web/database/manager" and use the restore option, but you also need to have a DB created to restore it to.
I think that the createdb has to be executed in psql and the pgrestore directly in terminal.
yes, you need to execute this command into terminal