SQL Server 2008 Full Index - performance improvements

  • I have lots of text files that are stored in a sql server 2008 db.

    I am currently using a sql query that uses (like '%xyz%') as part of my search query.

    Is 'contains' more efficient than 'like' ?

    Can you setup a frequently used word index as part of sql 2008 full text indexing ?

    Obviously i cant index every field !

    It is taking about 10 minutes to search 27 GB of text files 🙁

  • If you are really searching for terms, FULL-TEXT will be faster

    and it will return results right away, with a rank (but full-text has its cons)

    You can create a full-text catalog, pick a table, and the columns used

    Not sure what you meant by "frequently used word index"

    SQLServerNewbieMCITP: Database Administrator SQL Server 2005

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

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