I have recently migrated a version 5 database to a version 6 database using a 
c# program that i wrote. Considering i can utilize this data in version 6 with 
relatively few problems, I would consider my migration a success. 

If anyone has any thoughts, questions, or suggestions about migrating OpenErp 
databases, please post them on this thread. 

I will start with a simple suggestion: 

If you are migrating data from version 5 to version 6, you will need to address 
the sequences for all of the tables which you are migrating. This is because 
the sequences do not automatically detect lowest available index with which to 
create a row, they just have an initialized constant that they start assigning 
unique ids with. 

In other words, you will have to augment the sequence table using a statement 
like this: 

select setval('<table_name>', starting index);




-------------------- m2f --------------------

--
http://www.openobject.com/forum/viewtopic.php?p=59990#59990

-------------------- m2f --------------------


_______________________________________________
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users

Reply via email to