Full text index

  • If you have a field included in a full text index, is it of any benifit to also have it as a regular index...ei are there times when SQL might not use a full text index but would use the standard index ?

    Thanks

    rw

  • Actually it's the other way around.. sql won't use full tect search unless you specifically ask it to.

  • What do you mean "ask it to"? If I have criteria based on a field in the full text index, SQl will not use the full text index by default?

  • Create an full text index and index a column with it then run this :

    Select * from dbo.YourTable where IndexedCol = 'blabla'

    Select * from dbo.YourTable where CONTAINS (IndexedCol, 'blabla')

    and lookup the execution plans.

  • Thanks, that answers the question!

    rw

Viewing 5 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply