1

How to view the indexes of a single table, not all tables, in SQL Server 2014?

jarlh
  • 42,561
  • 8
  • 45
  • 63
user3624303
  • 91
  • 10

1 Answers1

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