Refactoring from Oracle to postgres, Do I need to drop foreign key constraitns at postgres

0

I am doing reactoring from Oracle to Postgres, as part of it I am doing replication from Oracle to postgres using DMS. Do I need to drop foreign key on postgres before I start the DMS?

已提問 2 年前檢視次數 266 次
2 個答案
0

Best practice is to leave constraints off while doing the full load because they can cause errors. Once you are in the change data capture phase you can safely add them to the target database. Look at the "Working with indexes, triggers, and referential integrity constraints" section in the DMS Best Practices for more detail. https://docs.aws.amazon.com/dms/latest/userguide/CHAP_BestPractices.html

DMS doesn't migrate the constraints, so you don't need to drop them in the source database. You just need to not create them in the target database until you're ready. Look at the "Converting schema" section on the same page.

profile pictureAWS
已回答 2 年前
0

Hello,

Dropping foreign key is one of the option.

But using change in parameter "session_replication_role=replica" can be used to avoid all the drop and re-create of foreign keys efforts. During data replication phase, modify this parameter and post data migration, revert it to origin.

https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.html#CHAP_Target.PostgreSQL.ConnectionAttrib

Hope this will help

Thanks

AWS
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南