No hit, free-text search on filestream

Answered No hit, free-text search on filestream

  • Thursday, August 16, 2012 7:01 PM
     
     

    I am doing a FTS on filestream enables tables. When i do a simple search withit works fine and returns two rows with 'how'

    Select name,CAST([file_stream] AS varchar) from [dbo].[FileTableTb] where CAST([file_stream] AS VARCHAR) like '%how%'

    But when i do a FTS query like :

    SELECT Name
    FROM dbo.FileTableTb
      where  freetext([file_stream] , '"how"')

    It returns NO results but just

    Informational: The full-text search condition contained noise word(s).

    I have already suppress noise words using :

    exec sp_configure 'show advanced options', 1
    RECONFIGURE
    GO
    exec sp_configure 'transform noise words', 1
    RECONFIGURE
    GO

    any ideas/help?

    thanks

    VK


    vandana

All Replies