For a given table 'foo', I need a query to generate a set of tables that have foreign keys that point to foo. I'm using Oracle 10G.
|
|
This should work (or something close):
|
|||
|
|
|
Download the Oracle Reference Guide for 10G which explains the data dictionary tables. The answers above are good but check out the other tables which may relate to constraints. select * from dict where table_name like '%CONS%'; Finally, get a tool like Toad or SQL Developer which allows you to browse this stuff in a UI, you need to learn to use the tables but you should use a UI also. |
|||
|
|
|
link to Oracle Database Online Documentation You may want to explore the Data Dictionary views. They have the prefixes:
sample:
Continuing Mike's example, you may want to generate scripts to enable/disable the constraints. I only modified the 'select' in the first row.
|
|||
|
|
|
The following statement should give the children and all of their descendents. I have tested it on an Oracle 10 database.
|
||||
|
|