In text retrieval, full-text search refers to techniques for searching a single computer-stored document or a collection in a full-text database. Full-text search is distinguished from searches based on metadata or on parts of the original texts represented in databases (such as titles, abstracts, ...

learn more… | top users | synonyms

0
votes
1answer
8 views

Words with single quote and `MATCH AGAINST` accuracy

How can i set mysql select to treat words without single quote same as if i searched them with single quote. for example if i'm searching for dont treat it like don't What I've tried ...
5
votes
2answers
112 views

Using the minus sign on multiple-words in full text boolean mode

I am just doing a bunch of testing with mysql's full text boolean mode and from my testing it doesn't seem you can use the minus sign on multiple words? I have two rows for example.. id,name ...
0
votes
1answer
17 views

Making sense of full text boolean mode results

I've been playing around with boolean mode with MySQL's fulltext searching but I'm not understanding the results I am getting at times. For example, here are some data rows.. auction_id,'name' ...
0
votes
1answer
19 views

Is there a way by default to require ALL words in full text searching?

I'm trying to find a way to make it so when users do a search that by default ALL words are required. This seemed easy enough at the beginning, just break the words up and add a + sign to the start ...
0
votes
1answer
40 views

MySQL Fulltext search not working with more than 1 word [closed]

SQL: SELECT *, MATCH(NAZOV, POPIS, CENA) AGAINST ('+htc +one') as Score FROM `produkty` WHERE MATCH (NAZOV, POPIS, CENA) AGAINST ('+htc +one') ORDER BY `TOP` DESC LIMIT 0, 9 .htaccess rewrite ...
0
votes
0answers
32 views

MongoDB query for full text search and Geo returning wrong result

When we try to search through mongo cli, we are not getting correct data. Here's the full scenario: We have the following JSON in a collection: "_id" : 18348, "Name" : "Applebee's Neighborhood ...
0
votes
2answers
256 views

Mysql FullText Search Case-insensitive

I have table products_discription from OpenCart. I created new search engine. Everything is okey, except that is case sensitive. How I can make it insensitive. I readed in Mysql Documentation I must ...
0
votes
1answer
35 views

Fulltext search with relevance - why the need for a multiple columns index?

I have to implement fulltext search in multiple columns with result weighting based on relevance of certain columns / fields. All the solutions I've come across seem to use single-column indexes for ...
0
votes
1answer
28 views

MySQL - Full Text Search - Losing index

So here is the scenario: MySQL have 1 MYISAM Table colum named v.value has a full text index Basic query works fine, uses the index as expected: SELECT p.online_identifier FROM (...) WHERE ...
0
votes
0answers
16 views

mysql - fulltext index - what is natural language mode

I have a question regarding this article: http://dev.mysql.com/doc/refman/5.6/en/fulltext-natural-language.html. Here I found queries like SELECT * FROM articles WHERE MATCH (title,body) AGAINST ...
1
vote
1answer
33 views

MySQL FTS boolean mode operator customizing

I'm using the InnoDB FTS of MySQL 5.6.10 and want to change the default behavior of the boolean operators. Note In implementing this feature, MySQL uses what is sometimes referred to as implied ...
0
votes
0answers
29 views

“sample” a mysql fulltext query with one criteria

I run frequently a fulltext query which succeeds, it sends me the result I need, but I realize i need a new feature... For few queries, some store are overestimated ( example: if I search for ...
0
votes
1answer
40 views

searching MySQL for most phrase occurrence

I am trying to search an entire table and return the most occurring phrases (up to three words) within a long string. I believe I could use fulltext search, but I am not matching against anything... ...
-1
votes
1answer
18 views

Word clouds and mysql fulltext

I am using mysql fulltext in a web site with few 1000s of articles (much like a newspaper). I created the index using the "title" and the "body" of the article. Now I would like to include in the ...
1
vote
1answer
51 views

Fulltext Postgres

I created an index for full text search in postgresql. CREATE INDEX pesquisa_idx ON chamado USING gin( to_tsvector( 'portuguese', coalesce(titulo,'') || coalesce(descricao,''))); When I run this ...
2
votes
1answer
30 views

MySQL Full Text Search odd behaviour

I made a website for a shop that uses an sql table to manage data about their products. I used full text search so users can search easily through the stock. The search runs queries to match the ...
0
votes
0answers
23 views

MySQL Simple vs. groupped index

I have an table and I use MATCH AGAINST for search FULLTEXT-based. But I have a question: Whats is the difference between use an simple index FULLTEXT vs use an multi-field FULLTEXT?
0
votes
1answer
39 views

MySQL fulltext search with no matches

Having this table: CREATE TABLE search ( `uid_search` INT(15) NOT NULL auto_increment, `uid` INT(11), `type` VARCHAR(30), `strings` TEXT, UNIQUE (uid,type), PRIMARY KEY (uid_search), FULLTEXT ...
1
vote
1answer
51 views

Why is Mysql match boolean mode not finding “Knows”

I have these two queries SELECT * FROM `foo` WHERE MATCH(`title`) AGAINST('knows' in boolean mode ) SELECT * FROM `foo` WHERE MATCH(`title`) AGAINST('woman' in boolean mode ) and in the table I ...
0
votes
0answers
23 views

RSS : FULL itemtitle instead of TRUNCATED itemtitle

I have a Pinterest RSS feed and all the titles are truncated (description of a photo is automatically the title). Is there a way around this because I'd like to have the full itemtitle instead of the ...
0
votes
1answer
19 views

mysql searching short words

I have a query which looks for a number of keywords which works fine using fulltext indexes but there is an issue with products like 'Adidas Adistar Salvation 3' The 3 is actually important but the ...
0
votes
0answers
20 views

How to update the content of full-text column in mysql [closed]

How to update the content of full-text column in mysql using mysql query on update operation.
0
votes
1answer
46 views

SQL FullText search with different combinations of empty inputs, using PHP

Say my SQL table has columns Title, Price, YearsOld and I want to search for matching results using input forms from an html page. I want the user to be able to leave whatever input forms blank that ...
0
votes
1answer
41 views

Mysql fulltext search with multiple fulltext indexes

I have this mysql table with these two fulltext indexes: ALTER TABLE `tbl` ADD FULLTEXT `fulltext_idx` (`name`, `label`); ALTER TABLE `tbl` ADD FULLTEXT `fulltext_idx2` (`keywords`, `title`); How ...
3
votes
1answer
44 views

MYSQL fulltext - unexpected result

I have a database of 80,000 rows and as I was testing out some FULLTEXT queries I encountered an unexpected result. I have removed stopwords from MYSQL and have set the minimum word length to 3. When ...
1
vote
0answers
61 views

Custom ifilter for sqlserver works only for first file

I created a custom ifilter for a new extension (.abc). When I installed it in operative system, the search works well. When I tried to use it in sqlserver 2012 on a full text index on a filetable ...
2
votes
1answer
84 views

Dynamic mysql search when Fulltext is not a viable solution

Many articles will point you to Fulltext indexing for a simple solution to mysql searches. This very well may be the case under the right circumstances, but I've yet to see a solution that comes close ...
0
votes
0answers
87 views

How do I associate a varbinary column to “.html” in SQL Server 2008 - need to create fulltext index

I need to index a column that stores HTML data and I want to ignore the markup. Here's what I know: Store the column as varbinary(MAX) Set its associated file type to ".html" Enable full-text ...
1
vote
0answers
126 views

Fulltext search with typos: levenshtein-fulltext?

I have a mysql table with the following columns City Country Continent New York States Noth America New York Germany Europe - considering there's one ;) Paris France Europe If I ...
1
vote
1answer
84 views

fulltext index where contains uses column not text value or variable

I'm trying to run a query where I have a fulltext index on a column and I want to run a query with a contains statement where that column is looking for a match with a column in another table...not ...
-1
votes
1answer
106 views

How to perform full text search on a gin postgres index in doctrine 2.2?

Is there a simple way of doing this in doctrine, or am I going to have to do a native sql query? If someone could point me in the right direction, it would be appreciated.
1
vote
1answer
135 views

Perform accent insensitive fulltext search MySQL

I'm currently developing a search functionality for a website. Users search for other users by name. I'm having some trouble getting good results for users that have accents on their name. I have a ...
0
votes
1answer
74 views

Switching MySQL table from MyISAM to InnoDB - What do I do with the Column Indexes that were FULLTEXT

I am switching some MySQL tables from MyISAM to InnoDB: What should I use in place of FULLTEXT? As InnoDB does not have FULLTEXT. What should I use in FULLTEXT's place, when switching from MyISAM ...
0
votes
0answers
124 views

sql server 2008 full text search for hindi words ending with word separator

have a table in which one column contains text data in English as well several Indian languages. The character । is used to denote the end of a sentence in Hindi. I have created a customized stop list ...
0
votes
0answers
84 views

Fulltext searching in Propel 1.6

Could you give me real example how to make fulltext searching in pure Propel 1.6, please? I don't use Symfony.
0
votes
1answer
65 views

MySQL fulltext index search mysql_num_rows returns 1

Correction below! I search a fairly large table for matches with this simple SQL question: $result = mysql_query("SELECT *, MATCH(foretag, stad) AGAINST('$query') AS r FROM tblforetag WHERE ...
1
vote
1answer
167 views

MySQL - FULLTEXT in BOOLEAN mode + Relevance using views field

I have the following table: CREATE TABLE IF NOT EXISTS `search` ( `id` BIGINT(16) NOT NULL AUTO_INCREMENT PRIMARY KEY, `string` TEXT NOT NULL, `views` BIGINT(16) NOT NULL, ...
3
votes
1answer
67 views

MySQL - Issue with FULLTEXT search with specific seach value 'course'

I have created below table. CREATE TABLE `test` ( `name` VARCHAR(50) NOT NULL, `id` INT(10) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), FULLTEXT INDEX `name` (`name`) ) COLLATE='utf8_general_ci' ...
0
votes
1answer
80 views

Converting MyISAM to InnoDB - what to do with fulltext columns

I am in the process of switching all my database tables to InnoDB so that I can use transactions. I had made certain columns in some tables fulltext with a view to building some search functionality ...
3
votes
1answer
266 views

PDO and MySQL Fulltext searches

I'm converting all my sites code from using mysql_* functions to PDO. The PHP documentation on PDO is not clear for my needs. It gives you the functions to use, but does not go into detail to explain ...
1
vote
0answers
91 views

mysql fulltext boolean search with asterix

I have a query like below: SELECT prd_id FROM products WHERE MATCH (prd_search_field) AGAINST ('+gul* +yetistiren* +adam*' in boolean mode); This doesn't return the rows including 'gul'. ...
0
votes
2answers
159 views

Getting Sphinx to filter search results

I've installed Sphinx with the purpose of using it for fulltext search on a MySQL table (InnoDB). Table columns consist of an id (numeric), name and description (these both to be fulltext indexed; ...
2
votes
1answer
256 views

MySQL fulltext autocomplete search issues

So I have been struggling with FULLTEXT index searches, had a previous question here which was resolved, but it seems for some searches it works ok, and on others it doesn't As before, looking for ...
3
votes
1answer
148 views

Benchmarking FULLTEXT performance - how to

Background I need to implement FULLTEXT search on a MySQL server database (in the size range of 10k-200k records). As of now, database search is based on naive implementation (LIKE queries), which ...
0
votes
0answers
70 views

Mysql Fulltext search with different number of columns

I've been taking my first stab at Fulltext searching and am having trouble getting the query to work. Here's the new code I've been trying (from a PHP file): $browse_all_query = "(SELECT master_id, ...
0
votes
1answer
52 views

define many entities and search at single entity type at solr

I have database with 4 tables which is person,location,cities,countries now i want to be able to search in every particular table (like search for all countries start with united) and also search in ...
1
vote
0answers
300 views

Slow INSERT INTO SELECT statement – not repeatable

Short Version: INSERT INTO SELECT into a table with fulltext index with the same data takes sometimes 25 seconds and sometimes 2500 seconds. We have no idea where this huge gap is coming from. Long ...
0
votes
1answer
81 views

Oracle full text, the syntax of CONTAINS()

contains(columnname, 'ABC')=0 this means search for the data which doesn't contain word 'ABC' contains(columnname, 'ABC and XYZ')=0 contains(columnname, 'ABC or XYZ')=0 what do these 2 sql mean? ...
1
vote
1answer
68 views

MySQL 5.1, Fulltext search does not find the word “more”

I have a table with a fulltext on one column "volltext" type is mediumtext. The fulltext index is "volltext". I matched words on it like SELECT * FROM `volltextsuche` WHERE MATCH(volltext) ...
3
votes
1answer
431 views

Postgresql prefix wildcard for full text

I am trying to run a fulltext query using Postgresql that can cater for partial matches using wildcards. It seems easy enough to have a postfix wildcard after the search term, however I cannot figure ...

1 2 3 4 5 7