Oracle foreign key acquisition

Source: Internet
Author: User
Oracle uses user_constraints to obtain the foreign key. All data must be processed manually in Oracle at a time. When deleting a primary table

Oracle uses user_constraints to obtain the foreign key. All data must be processed manually in Oracle at a time. When deleting a primary table

Oracle uses user_constraints to obtain the foreign key.

For example, to obtain all foreign keys:

Select CONSTRAINT_NAME constraint name, TABLE_NAME table
From user_constraints t where
1 = 1
-- T. table_name in ('tbl _ step ')
And CONSTRAINT_TYPE = 'R'
AND CONSTRAINT_NAME = 'fk _ STEP_ID ';

All data must be processed manually in Oracle at a time. When deleting a primary table, you must first Delete the secondary table record that references the primary table record. When deleting the primary table record, an FK restriction reference error is often reported.

There will be a foreign key name above. With the following statement, we can find the corresponding slave table and then process it.

Select CONSTRAINT_NAME constraint name, TABLE_NAME table
From user_constraints t where
1 = 1
T. table_name in ('tbl _ step ')
And CONSTRAINT_TYPE = 'R'
AND CONSTRAINT_NAME = 'fk _ STEP_ID ';

,

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.