sql server - FULLTEXT search with a multi-language column -


is there way use fulltext in multi-language table without giving each language own column?

i have 1 column need search, language in column varies:

productid    int description  nvarchar(max) language     char(2) 

language can 1 of: en, de, it, kr, th

currently build concordance , use searching. english, german , italian, , doesn't support stemming. else uses like '%searchterm%', , i'm trying improve on that.

i'm using sql server 2005.

instead of separate column per language, if know rows contain language create indexed view filtered include rows of single langauge per language , fti each of those. you'll need query each view individually though.


Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -