Is there any way to view a View created in Postgres and view it in MySQL? If yes, how to configure?
Is there any way to view a View created in Postgres and view it in MySQL? If yes, how to configure?
No, one bank can not access the other. What you can do is, build an application that will serve as a bridge between these two servers and use one dataset to feed one another with the view information in question.
It seems like this is not possible. MySQL has an engine FEDERATED
to connect to external banks. Unfortunately, the current version of MySQL (5.7) limits federated access to other MySQL databases ( link to the documentation ).
MariaDB , a MySQL fork has an engine CONNECT
" able to access PostgreSQL through OBDC, but So far, as far as I know, this engine is not compatible with MySQL.
Font : SOen - Do databases besides Postgres have features comparable to foreign data wrappers?