Questions tagged [freetext]

FREETEXT is an SQL text-search predicate that uses stemming (e.g. -ing, -ly) and a thesaurus to search for the given string.

FREETEXT is a predicate used to search columns containing character-based data types for values that match the MEANING and not the exact wording of the words in the search condition. When FREETEXT is used, the full-text query engine internally performs the following actions on the freetext_string, assigns each term a weight, and then finds the matches.

109 questions
-1
votes
1 answer

SQL Server 2008 FREETEXT Search stopped working

I recently had an issue where a FREETEXT search stopped working in my stored procedure. SELECT ShowID FROM Table WHERE FREETEXT(Category, @Category) This has been working for months until today. I kept trying a few things and then the only thing…
Dwight
  • 93
  • 1
  • 9
-1
votes
2 answers

Find if a letter's are present inside a text in sql server 2012

SELECT cat.CategoryId ,cat.CategoryImageURL ,cat.CategoryName ,cat.isDeleted ,ap.AppCreatedBy ,ap.AppCreatedOn ,ap.AppDetails ,ap.AppId ,ap.AppImageURL ,ap.AppModifiedBy ,ap.AppModifiedOn ,ap.AppName ,ap.isDeleted …
vini
  • 4,657
  • 24
  • 82
  • 170
-1
votes
1 answer

No module named freetext - Django

I have a problem with django module named freetext. There is no info how to install it in Django. I'm getting this error while trying to run Django on new server: [Mon May 28 13:47:45 2012] [error] mod_wsgi (pid=27668): Exception occurred processing…
miszczu
  • 1,179
  • 4
  • 19
  • 39
-2
votes
0 answers

I am trying to add a backslash to a numbers field for blood pressure on the free text questionnaire plugin

I am trying to add blood pressure as a question on the free text questionnaire plug in and I cant figure out how to add a backslash between two numbers. I am also using the document manager stats to see the average blood pressure. I am only able to…
1 2 3 4 5 6 7
8