Size Limits of Sql Server Indexed columns
FYI, there is a limit on the size of a column that can be used for an index with Sql Server (and I assume other databases). With Sql Server, a column over 900 bytes in size can not be indexed. I would assume that the total number of bytes for an index can not be over 900 bytes, but I am not sure on that. I tried to index my UrlAddress field, which is defined as varchar(4096) and I got a nice message box saying that this was not possible.
Wally