Hibernate deletes a table that encounters a primary key being referenced by a foreign key that violates full constraints cannot be removed

Source: Internet
Author: User

MySQL has set the Foreign Key association in InnoDB, which makes it impossible to update or delete data. You can avoid this situation by setting the Foreign_key_checks variable.


SET foreign_key_checks = 0;
Settings after delete is complete
SET foreign_key_checks = 1;


Other:
Turn off Uniqueness Checks
Set unique_checks=0;
Set Unique_checks=1;

Extended:

Hibernate and Oracle cannot handle data integrity at the same time. Here's how to fix it:

(Method 1) Give data integrity constraints to Oracle processing without setting data integrity in Hibernate.

(Method 2) give the data integrity constraint to hibernate, set the parent table relationship in Hibernate, and cascade Delete to eliminate the integrity constraints of the tables in the Oracle database, that is, not to set the foreign keys for the child tables.

Hibernate deletes a table that encounters a primary key being referenced by a foreign key that violates full constraints cannot be removed

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.