views:

113

answers:

4

I found the mysql migration toolkit which will migrate the tables.But is there something which will convert the functions as well.

+1  A: 

most likely not. the stored procedure and function language differs greatly between postgresql and mysql. such an application would be costly to develop.

longneck
+2  A: 

Almost certainly not.

If your functions are in the SQL language only, it should probably be doable. But any of the many other languages supported by PostgreSQL (pl/pgsql, perl, python etc) are completely different, and contain much functionality that's simply not supported on MySQL.

Magnus Hagander
+1  A: 

There are several data migration tool available on google to convert database like , you can easily search for it, i use dbload for such aim.

Find Here : www(.)dbload(.)com

Why those tits in the dots's domain name?
DaNieL
A: 

Yes, hire a software developer.

User1