简体   繁体   中英

Postgres: How can we preserve data of foreign table which is creating using foreign data wrapper

I am trying to migrate Oracle database to Postgres using foreign_database_wrapper by creating foreign tables.

But since the foreign tables acts like a view of Oracle so at the time of executing any query it fetches data on fly from the Original source and hence it increases the processing time.

As of now, in order to maintain physical data at Postgres end, I am creating table and inserting those data in it.

eg: create table employee_details as select * from emp_det;

where employee_details is a physical table and emp_det is a foreign table

But I felt this process is kind of redundant and time to time we need to manipulate this table(new insertion, updation or deletion)

So if anyone could share some related way where I can preserve these data with some other mode.

Regards,

See the identical Github issue .

oracle_fdw does not store the Oracle data on the PostgreSQL side. Each access to a foreign table directly accesses the Oracle database.

If you want a copy of the data physically located in the PostgreSQL database, you can either do it like you described, or you could use a materialized view:

CREATE MATERIALIZED VIEW emp_det_mv AS SELECT * FROM emp_det;

That will do the same thing, but simpler. To refresh the data, you can run

REFRESH MATERIALIZED VIEW emp_det_mv;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM