Nearly identical to http://stackoverflow.com/questions/85978/query-a-tables-foreign-key-relationships, but for SQL Server 2000
For a given table 'foo', I need a query to generate a set of tables that have foreign keys that point to foo.
|
2
|
Nearly identical to http://stackoverflow.com/questions/85978/query-a-tables-foreign-key-relationships, but for SQL Server 2000 For a given table 'foo', I need a query to generate a set of tables that have foreign keys that point to foo.
|
||
|
|
|
|
|
||
|
|
|
Start here
FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS cons LEFT join INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE cols ON cons.CONSTRAINT_NAME = cols.CONSTRAINT_NAME WHERE cons.CONSTRAINT_TYPE = 'foreign KEY' ORDER BY cons.TABLE_NAME , cons.CONSTRAINT_NAME , cols.COLUMN_NAME [edit] formatting is all messed up |
||
|
|
|
Try this T-SQL:
I've rewritten the query slightly to give you all of the other tables that rely on a particular table:
|
||||
|
|
|
Parents and children
|
||
|