SQL used to block Oracle Foreign keys

Source: Internet
Author: User

In JUnit, foreign keys are generally not required. However, the foreign key has been created during the database generation process, which is troublesome for adding, deleting, and modifying data. Follow these steps to invalidate or take effect of the foreign key as needed.
 
Run the following SQL
 
SELECT 'alter table' | TABLE_NAME | ''|
'Disable constraint' | CONSTRAINT_NAME | ';'
FROM USER_CONSTRAINTS
WHERE CONSTRAINT_NAME LIKE 'sys % 'AND
CONSTRAINT_TYPE = 'R ';
 
Several SQL statements similar to the following are generated.
Alter table ACCOUNT_PORTFOLIO disable CONSTRAINT SYS_C001219591;
 
Copy all generated statements to the text editor. If there is no problem, copy them directly to SQL plus for execution, and all foreign keys can be shielded.
 
In addition, if you execute the following SQL
SELECT 'alter table' | TABLE_NAME | ''|
'Enable constraint' | CONSTRAINT_NAME | ';'
FROM USER_CONSTRAINTS
WHERE CONSTRAINT_NAME LIKE 'sys % 'AND
CONSTRAINT_TYPE = 'R ';
 
Execute the generated SQL statement to make the foreign key take effect.

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.