Pregunta

I want to add a column with Hungarian language to my table, and I want to full-text-index it.

The problem is that SQL Server doesn't have Hungarian language registered, and I can't find any good tip by Microsoft about what's the best language to choose from.

Here are the languages that are supproted

And this is the best tip I found.

The text is specific about western languages, but Hungarian is not western. Any ideas?

¿Fue útil?

Solución

Apparently the closest widely known language to Hungarian is Finnish (see here). Unfortunately, SQL Server FTS does not seem to support Finnish either (see here).

You always have the option to create your own word breaker and word stemmer and load it into SQL Server FTS. For more information on how to do that for Hungarian, see this SO post. Of course, doing something like this would be a signficant undertaking, but I think there may not be any better options out there.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top