SQL SERVER FULL-TEXT INDEX, CONTAINS return empty

Posted by max on Stack Overflow See other posts from Stack Overflow or by max
Published on 2010-05-23T14:01:31Z Indexed on 2010/05/23 14:30 UTC
Read the original article Hit count: 308

Hi, All:

I got a issue about full index, any body can help me on this? 
  1. set up full text index

CREATE FULLTEXT INDEX ON dbo.Companies(my table name) ( CompanyName(colum of my table) Language 0X0 ) KEY INDEX IX_Companies_CompanyAlias ON QuestionsDB WITH CHANGE_TRACKING AUTO GO

  1. Using CONTAINS to find the matched rows

    SELECT CompanyId, CompanyName FROM dbo.Companies WHERE CONTAINS(CompanyName,'Micro')

  2. All is going well. just just just return empty resultset. And I am sure there is company with CompanyName "Microsoft" in Table Company

Much appreciated if anybody does me a favor on this.

© Stack Overflow or respective owner

Related posts about sql-server-2008

Related posts about full-text-search