FOREIGN TABLES/DATA WRAPPERS =============================== Foreign data wrapper is a library which understand the heterogeneous database information. For example, PostgreSQL does not understand the MYSQL data structure/information since both engines have different mechanism. If we want to get any heterogeneous database information then we need to configure the respective fdw(Foreign Data Wrapper) into the PostgreSQL Library location. Please find the below link, which gives you all the available Foreign Data Wrappers. http://wiki.postgresql.org/wiki/Foreign_data_wrappers Here we have chosen MYSQL table as a source to PostgreSQL. Below are the steps. 1) Install mysql and mysql-devel using yum . yum install mysql* 2) Install PostgreSQL 9.1 through EnterpriseDB graphical installer. 3) Get the MYSQL FDW from the below link. https://github.com/dpage/mysql_fdw/archive/master.tar.gz 4) set the "PATH" as shown below. export PATH=<PostgreSQL 9.1 Bin>:<Mysql...