We have a situation where our clients are going to be able to browse/search through our database to find a reference number when placing an order. We currently have 2 fields, FirstName and LastName. We want the performance of the search to be as high as possible, but we are unsure if we can create an index on the two fields concatenated together. We though about creating a view, but we are running MSSQL 2000 Standard, so we can't create an index on the view. We also considered creating another column which is the two concatenated together, but that seems redundant and we'd like to do it differently if possible.
Any suggestions on how to improve the performance of searching for these fields would be great.
Any suggestions on how to improve the performance of searching for these fields would be great.