How can I quickly solve the foreign key constraints when the database uses truncate to clean up many tables?

Source: Internet
Author: User

Troubleshooting ideas:

1. First, set the table involved in foreign key constraints in the database to invalid.

2. After all the table data is cleared, set the table with foreign key constraints to available.

Specific implementation script:

Declare

Begin

For vv_ SQL in (SELECT 'alter table' | table_name | 'Disable constraint' | CONSTRAINT_NAME alter_ SQL FROM USER_CONSTRAINTS

Where CONSTRAINT_TYPE = 'R ')

Loop

Execute immediate vv_ SQL .alter_ SQL;

End loop;

Execute immediate 'truncate table name;

...... --- Omitted here. Multiple executesql statements can be written.

For vv_ SQL in (SELECT 'alter table' | table_name | 'Enable constraint' | CONSTRAINT_NAME alter_ SQL FROM USER_CONSTRAINTS

Where CONSTRAINT_TYPE = 'R ')

Loop

Execute immediate vv_ SQL .alter_ SQL;

End loop;

End;

/

Related Article

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.