Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 202483
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:17:38+00:00 2026-05-11T17:17:38+00:00

I have set up the full-text search functionality in SQL Server 2008 express. This

  • 0

I have set up the full-text search functionality in SQL Server 2008 express. This is what I did:

-- STEP 1: Create catalog
create fulltext catalog HtmlSearch

-- STEP 2: Fill catalog
create fulltext index on docs
(WordHtml)
key index IX_docs_1
on HtmlSearch
with change_tracking auto

-- STEP 3: Search
select * from docs
where freetext(*, 'beleid')

The table docs has one row where the field WordHtml has (html)content. When I execute step 3, nothing happens. I am sure the term ‘beleid’ exists in the html-document. The result of the query is 0 records. So what am I doing wrong? Do I somewhere have to configure that this field is Html? And of so, how do I do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T17:17:38+00:00Added an answer on May 11, 2026 at 5:17 pm

    A similar query worked on a database I have, so I’d look at the setup. Here are some things you can try:

    The index doesn’t seem to be doing you any good right now anyway, so I’d drop it and try recreating it. I’m only familiar with 2005, but the syntax you used doesn’t look like what I have. You could try (after the appropriate drops)

    CREATE FULLTEXT Catalog HtmlSearch AS DEFAULT;
    
    GO
    
    CREATE FULLTEXT INDEX ON docs
    ( WordHtml Language English )
    KEY INDEX IX_docs_1
    WITH CHANGE_TRACKING auto;
    
    GO
    

    I assume WordHtml is the name of the column you want to index. If that’s the case, then this matches what I did in 2005.

    Next you can try explicitly populating the full text index. This might not be necessary, but I always do it after I create a full text index.

    ALTER FULLTEXT INDEX ON docs
    START FULL POPULATION;
    
    GO
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 138k
  • Answers 138k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The standard technique is to only grow the size by… May 12, 2026 at 7:27 am
  • Editorial Team
    Editorial Team added an answer How secure does your service have to be? What will… May 12, 2026 at 7:27 am
  • Editorial Team
    Editorial Team added an answer The new builtin styles layout sets of fields with configurations… May 12, 2026 at 7:27 am

Related Questions

I am using ruby on rails with a MySQL backend. I have a table
I have a table with a TEXT column where the contents is just strings
I am building a C#/ASP.NET app with an SQL backend. I am on deadline
Can/Should I use a LIKE criteria as part of an INNER JOIN when building

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.