I have a need to search names in our table, but we don't have a FREETEXT index setup. This isn't an option anymore due to the large amount of data in the table.
Is there any alternatives that I can do? Essentially I'd be looking at doing:
SELECT *
FROM MyTable
WHERE FREETEXT(FirstName, @firstname)
Any ideas or pointers would be greatly appreciated.