In my system I want to migrate my full database from mysql to postgresql
mysql> SELECT VERSION();
+--------------+
| VERSION() |
+--------------+
| 5.1.73-1-log |
+--------------+
1 row in set (0.02 sec)
shell=# SELECT version();
version
----------------------------------------------------------------------------------------------
PostgreSQL 9.3.4 on x86_64-unknown-linux-gnu, compiled by gcc (Debian 4.7.2-5) 4.7.2, 64-bit
(1 row)
Is it possible to convert my full database using any migration tools or using any php or perl script?
In mysql I have three views also which I also want to convert into postgresql tabes using this migration also.