Is there a system SP or dmv that allows me to select indexes in my DB based on columns and table names?
What I am trying to do is to drop indexes based on columns with string datatypes as I am in the process of altering my collation settings.
Thanks.
You can always determine the indices for a given column and/or table by querying the sys.indexes and sys.index_columns views:
Marc