Wednesday, 25 July 2018

MySQL: How to Enable and Disable Foreign Key Constraint?

In this post, I am sharing a script on how to enable and disable Foreign Key constraint in MySQL.
During data migration and testing purpose, Database Developer requires disabling Foreign key constraint.
Once you disable the constraint, later you might require enabling again, but during this exercise make sure that all your data changes are correct, and as per the constraint rule otherwise, you cannot enable those constraints. It violates data integrity rules.
You can perform disable/enable for both global and session levels of MySQL.
At Session level:
To Disable:
To Enable:
At Global level:
To Disable:
To Enable:

0 comments:

Post a Comment