0

Can I clone database from previous version of Odoo (I have Odoo 8)? If "yes", by what method?

I tried exporting and re-importing data but I have an error.

Stephen Kennedy
  • 20,585
  • 22
  • 95
  • 108
m.c.dev.96
  • 23
  • 1
  • 4
  • share your try code and exception – Ali Akbarpour Mar 08 '18 at 16:33
  • So you want to migrate one database from Odoo 8 to Odoo 10? Maybe my answer [here](https://stackoverflow.com/a/32713292/4891717) can help – ChesuCR Mar 08 '18 at 16:37
  • Possible duplicate of [How to migrate odoo 8 to odoo 10](https://stackoverflow.com/questions/41151342/how-to-migrate-odoo-8-to-odoo-10) – ChesuCR Mar 08 '18 at 16:37
  • in these questions they talk of module, my problem is data, as soon as possibile i upload the error that odoo take me – m.c.dev.96 Mar 08 '18 at 16:54

1 Answers1

0

You can take the database using pg_dump dbname > db_filename.sql although you cannot use the same database in other odoo versions since there is a lot of schematic changes in your database that is different in different versions of odoo. In order to do so you need to migrate the database from one version to another. There is OpenUpgrade that allows migration from odoo 8 to 9.

Omi Harjani
  • 737
  • 1
  • 8
  • 20