How to index small words (3 letters) with SQL Full-text search?

Posted by Sly on Stack Overflow See other posts from Stack Overflow or by Sly
Published on 2010-06-11T21:21:00Z Indexed on 2010/06/11 22:12 UTC
Read the original article Hit count: 149

I have an Incident table with one row that has the value 'out of office' in the Description column.

However the following query does not return that row.

SELECT * FROM Incident
WHERE CONTAINS( (Incident.Description), '"out*"' )

The word 'out' is not in the noise file (I cleared the noise file completely).

Is it because SQL Full-text search does not index small words? Is there a setting for that?

Note: I'm on SQL 2005.

© Stack Overflow or respective owner

Related posts about sql-server

Related posts about full-text-search