Postgres to Oracle connection
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
How to maintain Postgres to Oracle data synchronized?
Currently we are trying to mimic the Oracle to Oracle database link but with Oracle to Postgres. I know that we can add FDW wrappers to connect but the latency is huge.
I have also checked AWS DMS process but it has lot of data type issues when data load and synchronization from Oracle to Postgres happens.
Can someone tell a better way?
postgresql oracle-fdw
add a comment |
How to maintain Postgres to Oracle data synchronized?
Currently we are trying to mimic the Oracle to Oracle database link but with Oracle to Postgres. I know that we can add FDW wrappers to connect but the latency is huge.
I have also checked AWS DMS process but it has lot of data type issues when data load and synchronization from Oracle to Postgres happens.
Can someone tell a better way?
postgresql oracle-fdw
1
If you can live with the data on the Postgres side to be a bit out of data or if the Oracle table is not updated very often, you can create a materialized view in Postgres based on the foreign table.
– a_horse_with_no_name
Nov 23 '18 at 6:55
The issue is the Postgres instance is in AWS aurora. It is not allowed FDW to connect to oracle. So we created a Postgres instance in a Linux box where we instanced the FDW and bypass the connect but there is a huge latency. Replicating data is totally fine but we want the data to be in sync from oracle...can u suggest something more efficient?
– user10536555
Nov 23 '18 at 16:17
add a comment |
How to maintain Postgres to Oracle data synchronized?
Currently we are trying to mimic the Oracle to Oracle database link but with Oracle to Postgres. I know that we can add FDW wrappers to connect but the latency is huge.
I have also checked AWS DMS process but it has lot of data type issues when data load and synchronization from Oracle to Postgres happens.
Can someone tell a better way?
postgresql oracle-fdw
How to maintain Postgres to Oracle data synchronized?
Currently we are trying to mimic the Oracle to Oracle database link but with Oracle to Postgres. I know that we can add FDW wrappers to connect but the latency is huge.
I have also checked AWS DMS process but it has lot of data type issues when data load and synchronization from Oracle to Postgres happens.
Can someone tell a better way?
postgresql oracle-fdw
postgresql oracle-fdw
edited Nov 23 '18 at 11:00
Laurenz Albe
53.7k103052
53.7k103052
asked Nov 23 '18 at 2:12
user10536555user10536555
1
1
1
If you can live with the data on the Postgres side to be a bit out of data or if the Oracle table is not updated very often, you can create a materialized view in Postgres based on the foreign table.
– a_horse_with_no_name
Nov 23 '18 at 6:55
The issue is the Postgres instance is in AWS aurora. It is not allowed FDW to connect to oracle. So we created a Postgres instance in a Linux box where we instanced the FDW and bypass the connect but there is a huge latency. Replicating data is totally fine but we want the data to be in sync from oracle...can u suggest something more efficient?
– user10536555
Nov 23 '18 at 16:17
add a comment |
1
If you can live with the data on the Postgres side to be a bit out of data or if the Oracle table is not updated very often, you can create a materialized view in Postgres based on the foreign table.
– a_horse_with_no_name
Nov 23 '18 at 6:55
The issue is the Postgres instance is in AWS aurora. It is not allowed FDW to connect to oracle. So we created a Postgres instance in a Linux box where we instanced the FDW and bypass the connect but there is a huge latency. Replicating data is totally fine but we want the data to be in sync from oracle...can u suggest something more efficient?
– user10536555
Nov 23 '18 at 16:17
1
1
If you can live with the data on the Postgres side to be a bit out of data or if the Oracle table is not updated very often, you can create a materialized view in Postgres based on the foreign table.
– a_horse_with_no_name
Nov 23 '18 at 6:55
If you can live with the data on the Postgres side to be a bit out of data or if the Oracle table is not updated very often, you can create a materialized view in Postgres based on the foreign table.
– a_horse_with_no_name
Nov 23 '18 at 6:55
The issue is the Postgres instance is in AWS aurora. It is not allowed FDW to connect to oracle. So we created a Postgres instance in a Linux box where we instanced the FDW and bypass the connect but there is a huge latency. Replicating data is totally fine but we want the data to be in sync from oracle...can u suggest something more efficient?
– user10536555
Nov 23 '18 at 16:17
The issue is the Postgres instance is in AWS aurora. It is not allowed FDW to connect to oracle. So we created a Postgres instance in a Linux box where we instanced the FDW and bypass the connect but there is a huge latency. Replicating data is totally fine but we want the data to be in sync from oracle...can u suggest something more efficient?
– user10536555
Nov 23 '18 at 16:17
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439887%2fpostgres-to-oracle-connection%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439887%2fpostgres-to-oracle-connection%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
If you can live with the data on the Postgres side to be a bit out of data or if the Oracle table is not updated very often, you can create a materialized view in Postgres based on the foreign table.
– a_horse_with_no_name
Nov 23 '18 at 6:55
The issue is the Postgres instance is in AWS aurora. It is not allowed FDW to connect to oracle. So we created a Postgres instance in a Linux box where we instanced the FDW and bypass the connect but there is a huge latency. Replicating data is totally fine but we want the data to be in sync from oracle...can u suggest something more efficient?
– user10536555
Nov 23 '18 at 16:17