SQL Server 2008 FullTextSearch único caractere no nome ausente dos resultados

Eu tenho uma coluna indexada de texto completo no SQL Server 2008 que possui as seguintes linhas:

W Smithers, Wilda Smithers, W2 Smithers

Quando eu executo a seguinte consulta, eu só recebo Wilda Smithers e W2 Smithers.

SELECT  FT_TBL.full_name as results
FROM dbo.ft_table AS FT_TBL WITH (NOLOCK) 
INNER JOIN CONTAINSTABLE (ft_table , full_name, '("w*" AND "smither*")',12) AS KEY_TBL 
ON FT_TBL.ft_key_id = KEY_TBL.[KEY]
ORDER BY KEY_TBL.RANK desc

Alguma sugestão sobre como ajustar isso para W Smithers também está no meu conjunto de resultados?

questionAnswers(1)

yourAnswerToTheQuestion