How can we check that table have index or not ? if have how to find that index for a particular column for a table?
Regards, kumar
Try
select object_name(object_id),* from sys.indexes where object_name(object_id) = 'your table name'