From a database (DBMS)
Last updated
Last updated
Hydra External Tables can be used to import data into your Hydra data warehouse. Hydra supports a variety of External Tables.
Postgres External Tables are implemented using . To set up a Postgres External Table from psql
, run the following SQL, replacing ...
with your server's information.
You can now create foreign tables from your remote Postgres database. You can at once as follows:
💡 You can name the server and schema as you see fit.
You can now query your remote database from Hydra, including:
Using JOIN
between data in Hydra and in your remote database
Inserting, updating, or deleting data
You can now query your remote database from Hydra, including:
Using JOIN
between data in Hydra and in your remote database
Inserting, updating, or deleting data
MySQL External Tables are implemented using . To set up a MySQL External Table from psql
, run the following SQL, replacing ...
with your server's information.
You can now create foreign tables from your remote MySQL database. Assuming your remote MySQL database's name is mysql
, you can at once as follows: