You can do it using a straight forward select like this:
SELECT *
FROM sys.indexes
WHERE name="YourIndexName" AND object_id = OBJECT_ID('Schema.YourTableName')
You can do it using a straight forward select like this:
SELECT *
FROM sys.indexes
WHERE name="YourIndexName" AND object_id = OBJECT_ID('Schema.YourTableName')