The point is this: There is a site on Django + PostgreSQL, there is a dump of the base of the same site, only from MySQL. We need to somehow move the information from the dump to the site with postgres.
- 2en.wikibooks.org/wiki/Converting_MySQL_to_PostgreSQL section Convert and Import. Pay attention to the necessary replacement of characters - alexlz
- Thanks, I read, but I have no way to make a compatible dump. But there was another archive in which the xml files contain information for each django application. Can it be useful? - Richard_Davis
|
1 answer
You can try using the taps utility. Taps for Easy Database Transfers .
Either export data from MySQL to fixtures , and then load fixtures into Postgres.
|