This query will return details pertaining to the primary key and indexes defined on a SQL Server 2005/2008 table.
SELECT
indexes.name ,
all_columns.name ,
indexes.type_desc ,
indexes.index_id ,
indexes.type ,
indexes.is_unique ,
index_columns.index_column_id ,
index_columns.column_id ,
index_columns.is_descending_key ,
index_columns.key_ordinal
FROM SYS.indexes
JOIN sys.index_columns on
indexes.index_id = index_columns.index_id and
indexes.object_id = index_columns.object_id
join sys.all_columns
on all_columns.column_id = index_columns.index_column_id
and
all_columns.object_id = index_columns.object_id
WHERE indexes.object_id = 53575229
order by indexes.index_id, indexes.type, key_ordinal
You will need to run the query Get List of Tables to obtain the specific object_id that you will need to replace in the query above.
