Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to know how to get all composite foreign keys, using Information Schema Views. I am using Microsoft SQL Server Management Studio 2008 R2

Here is my code to get all composite primary keys

select distinct tc.TABLE_NAME, key_col_us.COLUMN_NAME
  from INFORMATION_SCHEMA.TABLE_CONSTRAINTS as tc inner join INFORMATION_SCHEMA.KEY_COLUMN_USAGE key_col_us on tc.TABLE_NAME = key_col_us.TABLE_NAME
 group by tc.table_name, key_col_us.COLUMN_NAME
having count(key_col_us.ORDINAL_POSITION) > 1
 order by tc.TABLE_NAME;
go

Thanks

share|improve this question
2  
What DB engine are you using? – juergen d Nov 11 '12 at 17:37
I am using Microsoft SQL Server Management Studio 2008 R2 – donutboy Nov 11 '12 at 18:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.