I have a large table (SQL Server 2008) with almost 3 million rows. It currently has a clustered index on it's primary key, and a non-clustered index on its foreign key.
Almost all the queries on the table are reads based on the foreign key.
- Should I change the index on the table to be against the foreign key?
- What is the best process for doing this?
Thanks