Get Postgres Tips and Tricks
Subscribe to get advanced Postgres how-tos.
MySQL Foreign Data Wrapper Guide¶
The MySQL Foreign Data Wrapper (mysql_fdw
) is a Postgres extension
that allows you to access data that resides on a MySQL database from
EDB Postgres Advanced Server. It is a writable foreign data wrapper that you can use with
Postgres functions and utilities, or in conjunction with other data that
resides on a Postgres host.
The MySQL Foreign Data Wrapper can be installed with an RPM package. You can download an installer from the EDB website.
This guide uses the term Postgres
to refer to an instance of EDB Postgres Advanced Server.
- What’s New
- Requirements Overview
- Architecture Overview
- Installing the MySQL Foreign Data Wrapper
- Features of the MySQL Foreign Data Wrapper
- Configuring the MySQL Foreign Data Wrapper
- Example: Using the MySQL Foreign Data Wrapper
- Example: Import Foreign Schema
- Identifying the MySQL Foreign Data Wrapper Version
- Troubleshooting
- Conclusion