Script to find all the primary key constraint in database

Script to find all the primary key constraint in database


SELECT i.name AS IndexName,OBJECT_NAME(ic.object_id) AS TableName,
COL_NAME(ic.object_id,ic.column_id) AS ColumnName FROM sys.indexes AS i
INNER JOIN sys.index_columns AS ic ON i.object_id = ic.object_id AND i.index_id = ic.index_id
WHERE i.is_primary_key = 1


Comments

No responses found. Be the first to comment...


  • Do not include your name, "with regards" etc in the comment. Write detailed comment, relevant to the topic.
  • No HTML formatting and links to other web sites are allowed.
  • This is a strictly moderated site. Absolutely no spam allowed.
  • Name:
    Email: