Tagged Questions
The freetext tag has no wiki summary.
5
votes
3answers
3k views
SQL Server Freetext match - how do I sort by relevance
Is it possible to order results in SQL Server 2005 by the relevance of a freetext match? In MySQL you can use the (roughly equivalent) MATCH function in the ORDER BY section, but I haven't found any ...
4
votes
2answers
252 views
SQL Server 2005 FREETEXT() Perfomance Issue
I have a query with about 6-7 joined tables and a FREETEXT() predicate on 6 columns of the base table in the where.
Now, this query worked fine (in under 2 seconds) for the last year and practically ...
4
votes
5answers
872 views
FreeText Query is slow - includes TOP and Order By
The Product table has 700K records in it. The query:
SELECT TOP 1 ID,
Name
FROM Product
WHERE contains(Name, '"White Dress"')
ORDER BY DateMadeNew desc
takes about 1 minute to run. ...
3
votes
3answers
484 views
Python: convert free text to date
Assuming the text is typed at the same time in the same (Israeli) timezone, The following free text lines are equivalent:
Wed Sep 9 16:26:57 IDT 2009
2009-09-09 16:26:57
16:26:57
September 9th, ...
3
votes
4answers
6k views
Slow SQL Query due to inner and left join?
Can anyone explain this behavior or how to get around it?
If you execute this query:
select *
from TblA
left join freetexttable ( TblB, *, 'query' ) on TblA.ID = [Key]
inner join ...
3
votes
4answers
791 views
Can you perform an AND search of keywords using FREETEXT() on SQL Server 2005?
There is a request to make the SO search default to an AND style functionality over the current OR when multiple terms are used.
The official response was:
not as simple as it sounds; we use SQL ...
2
votes
1answer
133 views
Parameterizing a full text query in sql server
I have a problem using the sql server full text feature. I'm converting some forum software to use the full text search and I have everything setup and working. My problems are related to full text ...
2
votes
3answers
110 views
Spell Checker for Search in ASP.NET
I am building a search where I need to implement couple of features in it among others.
1- It should bring all synonyms, like if someone searches for couch, it should bring in matching results for ...
1
vote
2answers
95 views
Searching a column with comma seperated values
I have SQL server 2008 r2 edition, which am working on and a .Net webpage as front end.
Coming to the issue, there is a column in the database which basically consists of various skill sets separated ...
1
vote
1answer
109 views
Scalable freetext & parametric searching (C#)
Currently, we've got an application that needs to perform very fast searches on ~2 mill records.
Searches need to search both a large free-text field, and a number of integer/decimal fields between ...
1
vote
2answers
1k views
Google like search query using Full Text Search in SQL Server
I am running a small website wherein I would like to make a functionality like Related Links section.
For that I created fulltext catalog and index.
So far I tried many ways to create search query ...
1
vote
3answers
608 views
How to handle single character search terms in MS-SQL FreeText searching?
I am having a problem with a FreeText search, currently running on a SQL 2000 server.
In a table of approximately 1.3 million rows which contain company names, I am attempting to use a FreeText ...
1
vote
1answer
616 views
Sql Server 2005 Fulltext case sensitivity problem
I seem to have a weird bug in Microsoft SQL Server 2005 where FREETEXT() searches are somewhat case-sensitive despite the collation being case-insensitive (Latin1_General_CI_AS).
First of, LIKE ...
1
vote
3answers
641 views
FreeText COUNT query on multiple tables is super slow
I have two tables:
**Product**
ID
Name
SKU
**Brand**
ID
Name
Product table has about 120K records
Brand table has 30K records
I need to find count of all the products with name and brand ...
1
vote
1answer
95 views
Override IE email auto-formatting in rich-text editor
Our site makes use of FreeTextBox, a web-based, rich-text editor. In IE, but in not Firefox, if a user types in something like:
someone@blah
IE automatically creates a mailto hyperlink. I have ...
1
vote
1answer
593 views
SQL Server “Optional” FreeText Search
I'm writing a search query in SQL Server 2005 for a discussion board. The proc takes several parameters, but most are "optional". There's one search field for Message Body, which I have a full text ...
1
vote
1answer
340 views
Slow inital query when using FreeTextTable in SQL Server 2005
The following FreeTextTable query takes > 10 seconds on the first request, but about a second for subsequent requests:
SELECT [Key], [Rank]
INTO #matches
FROM FREETEXTTABLE(Book, [Description], ...
0
votes
1answer
30 views
BlackBerry 5.0 Control for free-text search
I'm developing a BlackBerry 5.0 app.
I have an entity to be displayed on screen in a grid format.
Entity: Employee
Fields: EmpId(int), FirstName(string), LastName(string), Hobby(string)
Once I ...
0
votes
0answers
29 views
CONTAINS search not recognizing aspostrophe at end of word
Why on earth do both these lines return identical results?
select * from nsfarchives.dbo.a2011 where contains(truebody,'Tuesday')
select * from nsfarchives.dbo.a2011 where ...
0
votes
1answer
45 views
Optimizing an SQL search using a column for keywords and a variable as the text to be searched
Here's my quandary. I have a variable that contains a paragraph of text, and I have a column full of keywords. I want to search each of the keywords contained in the column against the entirety of the ...
0
votes
1answer
216 views
Fulltext index in MySQL for mediumtext field?
Is it at all possible to add a working fulltext index on a mediumtext field in oracle? I have been able to make an index, but I do not get any results when I query it. It might be that my sql is ...
0
votes
1answer
340 views
Free text (natural language) query parsing with solr
I'm trying to build a query parsing algorithm for a local search site that can classify a free text search query (single input text box) into various type of possible searches possible on the site.
...
0
votes
0answers
240 views
C# Multiple Keywords Fulltext Freetext Parameterized Query
I have a SQL 2008 database with a fulltext catalog setup for one of my tables and the goal is to be able to conduct a freetext search against that table from an asp.net c# website where the freetext ...
0
votes
1answer
418 views
FREETEXT queries in SQL Server 2008 not phrase matching
I have a full text indexed table in SQL Server 2008 that I am trying to query for an exact phrase match using FULLTEXT. I don't believe using CONTAINS or LIKE is appropriate for this, because in ...
0
votes
2answers
201 views
Full-text Search on documents and related data mssql
Currently in the middle of building a knowledge base app and am a bit unsure on the best way to store and index the document information.
The user uploads the document and when doing so selects a ...
0
votes
1answer
748 views
SQL Server Freetext and Contains functions at Godaddy webhosting
I have a webhosting at Godaddy with MS-SQL, I have a table called Product with 3 columns (Id, Title, Details)
I want to implement Freetext or Contains function to search multiple words.
When I ...
0
votes
4answers
144 views
What's your solution for free-text search and sort?
AFAIK,MySQL performs really bad at this,
what's your solution?
BTW,what's the solution of SO?
EDIT
Please pay attention that free-text search itself is pretty fast in MySQL,
but not the case when ...
0
votes
1answer
663 views
Fulltext search (sql server 2005) works only on some fields
OK this is the situation..
I am enabling fulltext search on a table but it only works on some fields..
CREATE FULLTEXT CATALOG [defaultcatalog]
CREATE UNIQUE INDEX ui_staticid on static(id)
CREATE ...
0
votes
2answers
3k views
Why or How does FREETEXTTABLE give a rank value higher then others
There is a store procedure that uses FREETEXTTABLE twice on two tables and then merges the results and returns the top 50.
The problem is if I do a search on "Women of Brewster", the results returns ...