vote up 0 vote down star

By default, when one tells SQL Server (currently using 2008) to Full-Text index a column, it treats characters such as "@" and "." as work-breakers, similarly to " ".

I'd like to restrict the work-breaking characters to just be " ", so that "joe.bloggs@somewhere.com" is treated as a single word.

It appears that one can choose a "Language for Word Breaker" against the indexed column - perhaps I need to set up a custom language?

Does anyone know how I can do this?

flag
Just found this: simple-talk.com/sql/learn-sql-server/… Looks like one can install new languages... now all I need to do is create a new language ;) – unknown (google) Oct 9 at 9:14

1 Answer

vote up 0 vote down

According to TechNet's article on SQL 2008 Full-Text Search:

well-known published interfaces provide the framework for Full-Text Engine extensibility. For more information, see the Microsoft Developer Network (MSDN) topics IFilter, IWordBreaker, and IStemmer.

So, at least according to this article, you can implement a custom IWordBreaker implementation (see http://blogs.msdn.com/michkap/archive/2005/03/14/395199.aspx for more info) and get SQL to use it.

What I haven't found so far is how to plug your custom word-breaker into SQL itself-- how to tell SQL to use your word-breaker. Sorry for the incomplete answer... hope I got you at least part of the way to a solution.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.