Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PostgreSQL -> Oracle replication

I'm looking for a tool to export data from a PostgreSQL DB to an Oracle data warehouse. I'm really looking for a heterogenous DB replication tool, rather than an export->convert->import solution.

Continuent Tungsten Replicator looks like it would do the job, but PostgreSQL support won't be ready for another couple months.

Are there any open-source tools out there that will do this? Or am I stuck with some kind of scheduled pg_dump/SQL*Loader solution?


1 Answers

You can create a database link from Oracle to Postgres (this is called heterogeneous connectivity). This makes it possible to select data from Postgres with a select statement in Oracle. You can use materialized views to schedule and store the results of those selects.

like image 120
tuinstoel Avatar answered Jun 11 '26 11:06

tuinstoel