I have a CHAR (250) column that is used as a foreign key for a varchar (24) column.
In MySQL, I remember that I could create a column defining an index (24) to create an index for the left-most 24 characters. This is not possible on MS SQL Server.
My question is:
Can SQL Server 2008 indexed view be used to index the substring of this column, and if so, will it have any side effects on table performance?
source
share