5

how do I find, with full text search all words that match 'ability' mask, like "suitability" and "dependability", etc? is that possible?

Greg
  • 1,227
  • 5
  • 23
  • 52
  • Here is how to do it: http://stackoverflow.com/questions/2962776/using-full-text-search-in-order-to-find-partial-words-sql-server-2008 – diegol Dec 06 '12 at 12:10
  • Here's the answer: http://stackoverflow.com/questions/2962776/using-full-text-search-in-order-to-find-partial-words-sql-server-2008 – diegol Dec 07 '12 at 09:31

2 Answers2

2

It's not possible out of the box. Apparently wildcards do not work. See here for discussion.

Community
  • 1
  • 1
mdma
  • 56,943
  • 12
  • 94
  • 128
0

I've had that problem, and there didn't seem any nice way round it but to also chain OR WHERE x LIKE "%term%" searches in each individual field.

user97410
  • 714
  • 1
  • 6
  • 22