Tagged Questions

3
votes
3answers
114 views

Python: convert free text to date

Hi, 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: …
3
votes
3answers
1k views

MSSQL Freetext match - how do I sort by relevance

Is it possible to order results in MS 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, bu …
3
votes
4answers
552 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 …
2
votes
4answers
1k 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 joi …
1
vote
1answer
128 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 …
1
vote
1answer
155 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, …
0
votes
4answers
41 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, b …
0
votes
0answers
27 views

Override IE email auto formatting.

Hello, Our site makes use of a web based, rich-text editor FreeTextBox. In IE, not FF, if a user types in something like: someone@blah IE automatically creates a mailto hyp …
0
votes
1answer
185 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 …
0
votes
0answers
504 views

How can I search for special characters using Freetext in SQL Server

I have a web page that allows users to search a Question & Answer database table (no its not StackOverflow). The web page accepts the search term from the user and passes it t …
0
votes
2answers
779 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", …