I've got a table with approx 7 million rows of data. The schema is something like:
ID - int (Primary Key)
Name - Varchar(250) Null
...
I want to set an index up for the Name column to speed up searches. e.g
Select * from table where name = 'ABC'
But what is the impact of setting up an Index on a varchar field? Index size? Does the speed benfit outweigh the cons?