Re: Mysql to Postgresql - Mailing list pgsql-general

From John R Pierce
Subject Re: Mysql to Postgresql
Date
Msg-id 4D647FF9.5050009@hogranch.com
Whole thread Raw
In response to Re: Mysql to Postgresql  (Jaime Crespo Rincón <jcrespo@warp.es>)
Responses Re: Mysql to Postgresql
List pgsql-general
On 02/22/11 1:25 AM, Jaime Crespo Rincón wrote:
> 2011/2/22 Adarsh Sharma<adarsh.sharma@orkash.com>:
>> Dear all,
>>
>> Today I need to back up a mysql database and restore in Postgresql database
>> but I don't know how to achieve this accurately.
> Have a look at: "mysqldump --compatible=postgresql" command:
> <http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html#option_mysqldump_compatible>
>
> Anyway, most of the times you will need a more manual migration, with
> human intervention (custom scripts) and migrating the data through
> something like CSV (SELECT... INTO OUTFILE).


if your tables aren't too huge, one method is via a perl script that
uses DBI to connect to both mysql and pgsql, and fetches a table from
one and loads it into the other.   the catch-22 is, its fairly hard to
do this efficiently if the tables won't fit in memory


there are also various "ETL" (Extract, Translate, Load) tools that do
this sort of thing with varying levels of performance and automation,
some free, some commercial.






pgsql-general by date:

Previous
From: Jaime Crespo Rincón
Date:
Subject: Re: Mysql to Postgresql
Next
From: mezgani ali
Date:
Subject: Re: Mysql to Postgresql