How to view the indexes of a single table, not all tables, in SQL Server 2014?
Asked
Active
Viewed 544 times
1 Answers
1
You can use SP_INDEXES or sp_helpindex
EXEC sp_indexes 'table name'
or
EXEC sp_helpindex 'table name'

Madhivanan
- 13,470
- 1
- 24
- 29
-
empty set is returned – user3624303 Nov 20 '15 at 12:27
-
It means that the table has no indices – Madhivanan Dec 22 '15 at 06:05