if i have table data that is indexed using full text search in Microsoft SQL server 2005 that includes raw table data such as "test2" should a query using FTS find a match if the search string is "test"?
Tell me more
×
Database Administrators Stack Exchange is a question and answer site for
database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
|
|
Yes you can use full text search in this case.
will find test2. See section C. Using CONTAINS with prefix_term in msdn |
|||
|
|
|
Full text search does allow certain types of near hits, similar terms, thesaurus etc. as outlined here: http://msdn.microsoft.com/en-us/library/cc879300.aspx This may be specifically helpful. http://msdn.microsoft.com/en-us/library/ms142492.aspx But most people end up using a traditional like statement to get partial matches as you have to format the full text query expecting that what was passed was potentially a prefix. |
|||||
|