Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
663 views

“Did you mean” feature on a dictionary database

I have a ~300.000 row table; which includes technical terms; queried using PHP and MySQL + FULLTEXT indexes. But when I searching a wrong typed term; for example "hyperpext"; naturally giving no ...
10
votes
6answers
2k views

How can one perform full text search in Google App Engine?

It's a simple question, but I haven't found the answer anywhere. Thoughts and input appreciated. I'm using Django, too, for what it's worth. :) Cheers.
8
votes
2answers
450 views

FULLTEXT search in MySQL does not return any rows

I am a bit lost, this looks like some silly mistake - but I have no clue what that can be. Here is the test session: mysql> drop table articles; Query OK, 0 rows affected (0.02 sec) mysql> ...
8
votes
8answers
8k views

Full Text Search in Linq

There's no full text search built into Linq and there don't seem to be many posts on the subject so I had a play around and came up with this method for my utlity class: public static ...
7
votes
3answers
2k views

MySQL FULLTEXT not working

I'm attempting to add searching support for my PHP web app using MySQL's FULLTEXT indexes. I created a test table (using the MyISAM type, with a single text field a) and entered some sample data. Now ...
7
votes
4answers
3k views

Ranking method used by SQL Server for Fulltext indexing

I'm having some problems with the ranking used by fulltext search in SQL Server. Suppose a user searches for two words, "foo bar". We assume the user intends to do an OR search, so we pass "foo OR ...
6
votes
2answers
108 views

php mysql match against no results

Alright, so I'm trying to do a Full Text search on my mysql table. Here is the query SELECT *, MATCH (title, joke) AGAINST ('welcome') AS relevance, MATCH (title) AGAINST ('welcome') AS ...
6
votes
3answers
1k views

Retrieving SQL Server Full Text Index terms

Using Lucene, one can retrieve the terms contained within in an index, i.e. the unique, stemmed words, excluding stop-words, that documents in the index contain. This is useful for generating ...
5
votes
1answer
266 views

MySQL fulltext search not working for some words like 'house'

I've setup a full text index on a small selection of records across 3 fields (tried a combination of the 3 as well and had the same result), and some words return results fine, but certain ones such ...
5
votes
2answers
124 views

Using an overall WHERE clause when using UNIONS in sql

I am trying to return the MATCH() AGAINST() results against several tables using UNIONS, the only problem is some rows return a relevance of 0, I want to exclude these. After the unions is there a way ...
5
votes
5answers
4k views

SQL Server - Fulltext search for %book%

Folks, I'm trying to wrap my head around how to search for something that appears in the middle of a word / expression - something like searching for "LIKE %book% " - but in SQL Server (2005) ...
4
votes
4answers
322 views

MySQL Match Fulltext

Im' trying to do a fulltext search with mysql, to match a string. The problem is that it's returning odd results in the first place. For example, the string 'passat 2.0 tdi' : AND MATCH ...
4
votes
1answer
247 views

Transform Search String into FullText Compatible Search String?

I'm working with the fulltext search engine of MSSQL 2008 which expects a search string like this: ("keyword1" AND "keyword2*" OR "keyword3") My users are entering things like this: engine 2009 ...
4
votes
3answers
1k views

Fulltext search for django : Mysql not so bad ? (vs sphinx, xapian)

I am studying fulltext search engines for django. It must be simple to install, fast indexing, fast index update, not blocking while indexing, fast search. After reading many web pages, I put in ...
4
votes
2answers
982 views

SQL Server Fulltext - multiple columns

I have what I think is a very basic scenario, but what I've read makes it sound like this is not easy in SQL Server Fulltext. I have 2 columns, First and Last name. I want to support fulltext search ...
4
votes
4answers
3k views

How to sort MYSQL fulltext search results by relevancy

I am relatively new to MYSQL and have had an issue that has been bugging me for a while. I've tried googling all over the place for the answer, but have unable to find an acceptable solution as of ...
4
votes
3answers
6k views

How to install fulltext on sql server 2008?

Trying to install fulltext on my sql server 2008 box. I went to 'programs and features', selected sql server 2008 and now I get this popup asking to choose either: add/ repair or remove. I click on ...
4
votes
1answer
661 views

MySQL Fulltext Searching ideographic (Asian) characters

I have a database full of Asian-character filled records (Chinese, Japanese, and Korean) alongside those with Latin-character filled records (English, Français, you name it), and I want to perform ...
4
votes
4answers
993 views

How do you get your Fulltext boolean search to pick up the term C++?

So, I need to find out how to do a fulltext boolean search on a MySQL database to return a record containg the term "C++". I have my SQL search string as: SELECT * FROM mytable WHERE MATCH (field1, ...
4
votes
4answers
1k views

Is SQL Server's Full Text Search the right tool for searching phrases, not documents?

30 million distinct phrases, not documents, ranging from one word to a 10 word sentence and I need to support word/phrase searching. Basically what where contains(phrase, "'book' or 'stack overflow'") ...
4
votes
2answers
2k views

Handling MySQL Full Text Special Characters

When using MySQL full text search in boolean mode there are certain characters like + and - that are used as operators. If I do a search for something like "C++" it interprets the + as an operator. ...
3
votes
1answer
219 views

mysql boolean mode fulltext search with wildcards and literals

I'm pretty new to MySQL full-text searches and I ran into this problem today: My company table has a record with "e-magazine AG" in the name column. I have a full-text index on the name column. When ...
3
votes
4answers
75 views

mysql multi-table fulltext query problem?

I am making a multi-table fulltext query.But I met some question. I need make a query like (SELECT title,content,date,cat FROM article1 WHERE cat='Science fiction' AND MATCH (title,content) ...
3
votes
3answers
791 views

MySQL search with uft8_general_ci is case sensitive for FULLTEXT?

I set up a MyISAM table to do FULLTEXT searching. I do not want searches to be case-sensitive. My searches are along the lines of: SELECT * FROM search WHERE MATCH (keywords) AGAINST ('+diversity ...
3
votes
1answer
213 views

Can MySQL fulltext search return an index(position) instead of a score?

I would like to use the position/index found by the Match...Against fulltext search in mysql to return some text before and after the match in the field. Is this possible? In all the examples I have ...
3
votes
2answers
41 views

Is there any point in creating a second column optimized for FULLTEXT searches?

the project I'm working on has for each column that needs to be searched a second column called "ft[columnname]" which has a FULLTEXT index and only this one is searched against. This column contains ...
3
votes
2answers
207 views

Searching with words one character long (MySQL)

I have a table Books in my MySQL database which has the columns Title (varchar(255)) and Edition (varchar(20)). Example values for these are "Introduction to Microeconomics" and "4". I want to let ...
3
votes
3answers
239 views

Fulltext searching array of strings

I have a PHP array of strings: ie: "Big green car parked outside"..etc I would like to perform boolean search operations on these strings, similar to MySQL fulltext searching , or Sphinx Searching. ...
3
votes
2answers
664 views

MySQL Fulltext Stopwords Rationale

I am currently trying to develop a basic fulltext search for my website, and I noticed that certain words like "regarding" are listed as stopwords for MySQL fulltext searches. This doesn't bother me ...
3
votes
4answers
2k views

My fulltext index option in sqlserver2008 is greyed out?

My fulltext index option in sqlserver2008 is greyed out? Is it a seperate install?
3
votes
2answers
285 views

Why does full text searching for string 'FDR' yields no results in MySQL?

I am trying to perform a search for users based on a full-text search. SELECT * FROM users WHERE MATCH ( name ) AGAINST ( 'FDR' IN BOOLEAN MODE ); However the query yields no results. I can replace ...
3
votes
1answer
2k views

Get query terms from Lucene query for highlighting

My Lucene queries will usually exist of a bunch of AND combined fields. Is it possible to get the queried fields out of the Query object again?
3
votes
8answers
6k views

How can I manipulate MySQL fulltext search relevance to make one field more 'valuable' than another?

Suppose I have two columns, keywords and content. I have a fulltext index across both. I want a row with foo in the keywords to have more relevance than a row with foo in the content. What do I need ...
2
votes
1answer
30 views

Sql Server multiple word search and ranking the results

Assume user enters "Vintage Audi Car" as search criteria My table has a field "Description" as Varchar(Max) I want to search the user entered values as Vintage OR Audi OR Car. The result should ...
2
votes
1answer
36 views

MySQL: Optimizing the search on range of records.

I've just saw a very slow query in my application. Table 'News' has more than 600.000 records. When I execute: SELECT news.id FROM `news` WHERE (newstime between '2012-01-16 00:00:00' AND ...
2
votes
2answers
40 views

PHP - MYSQL fulltext search

I have a MYSQL full text search, matching against items in my database, which works great. $select = "SELECT * from menu WHERE MATCH(item) AGAINST('$this->food') "; From there I refine the query ...
2
votes
1answer
100 views

Fuzzy Street Address Searches Using MySQL Fulltext (or sphinx?)

I have a database table full of addresses from Google Maps geocode responses. Google abbreviates all directions (West -> W, East -> E, etc). So if I enter an address like "100 West Pender Street" ...
2
votes
1answer
40 views

How can I use transactions with fulltext indexing in MySQL?

I'm using MySQL 5. Transactions are of paramount importance, but so is fulltext indexing. This seems to be a catch 22: InnoDB supports transactions but not fulltext indexing. MyISAM supports ...
2
votes
2answers
214 views

full text search sql server with mistyped words

We are evaluating a bunch of options at the moment for Fuzzy searches. One of our requirements is that mistyped words be matched. An OCR of CRA1G (with the number 1) must match 'CRAIG'. Full text ...
2
votes
3answers
198 views

Retrieveing matched context of MySQL fulltext search in PHP (and security)

I'm doing a fulltext search on my MySQL table "pages". I'm displaying a list of pages that match the keyword in their "title" (plain text, VARCHAR, 255) or "content" (html, TEXT). When the match is ...
2
votes
4answers
228 views

Please help me optimize a mysql search query

I have a query in MySql (5.1) InnoDB that searches in a table with parts. The table with parts contains about 500 000 rows. The search also joins two other tables tblcategory and tblheadcategory. I ...
2
votes
1answer
117 views

Can a Fulltext matching expression work inside a join condition

This is a related to another question asked here: How to: match (search space) against (join with column from other table) But I wanted to post this as a follow-up to one of the answers which the ...
2
votes
1answer
86 views

How do i get text near keywords?

I'm doing a full-text search on a mysql table with PHP on the backend and I want to be able to select some text before and after the keywords that user searched and show it to them just like Google. ...
2
votes
6answers
309 views

how to increase mysql full-text accuracy?

I am running a simple mysql full-text query that searches for users on my site based off of their "display name". The query example is below - in this example we are searching 'lancaster toy store': ...
2
votes
1answer
171 views

Can I define which word breakers to use when building a mssql fulltext index?

I have created a fulltext catalog that stores the data from some of the columns in a table, but the contents seem to have been split apart by characters that I don't really want to be considered word ...
2
votes
1answer
197 views

SQL Server Full-Text Rankings Example

So far, I'm not getting meaningful results from my full-text queries so I decided to give a simple example of what I am trying to do and the results I expect. I've made the the following test table ...
2
votes
1answer
198 views

Does a FULLTEXT index speed up LIKE conditions?

We have a system that is migrating from an older VARCHAR using LIKE setup to one that uses FULLTEXT indexes. So far everyone is enjoying the switch, but we still have some code that isn't catered to ...
2
votes
1answer
246 views

MySQL Fulltext searching and minimum search term length

I am using fulltext searching in mysql to search a database of videos I have, however when I search my videos some results will never get returned because the title I am searching for is less than the ...
2
votes
1answer
843 views

SQL Server Fulltext search yields no results

I have SQL Server 2005 Express Edition with Advanced Services. I enabled FullText and created a catalog as follows: create FullText catalog MyDatabase_FT in path 'mypath' as default I then created ...
2
votes
1answer
142 views

Fulltext search on many tables

I have three tables, all of which have a column with a fulltext index. The user will enter search terms into a single text box, and then all three tables will be searched. This is better explained ...

1 2 3 4 5