We have a whole bunch fo queries that "search" for clients, customers, etc. You can search by firstname, email, etc. We're using LIKE statements in the following manner:
select * from customer where fname like '%someName%'
Does full-text indexing help in the scenario?
Edit:
I failed to mention we're using MSSQL 2005.
select * from customer where fname like '%someName%'
Does full-text indexing help in the scenario?
Edit:
I failed to mention we're using MSSQL 2005.