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
0answers
8 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
0answers
16 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
13 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
35 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... ...
-2
votes
1answer
8 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
36 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
28 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
36 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
44 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
18 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
18 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
17 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
35 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
34 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
41 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
50 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
71 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
72 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
112 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
68 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
93 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
97 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
64 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
107 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
68 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
64 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
146 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
61 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
68 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 ...
2
votes
1answer
200 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
86 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
141 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
225 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
143 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
60 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
50 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
258 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
65 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
65 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
358 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 ...
0
votes
1answer
69 views

Implementing a tag system for my news system

I'm trying to build a tag system for my news system. I have finalized a table structure like this: CREATE TABLE article_tags ( id int(11) unsigned NOT NULL auto_increment, tag varchar (255) not null, ...
2
votes
1answer
326 views

Fulltext search on mysql with a 3 letter word

I'm trying to find "the zen" string in a field containing "The Zen Circus". I've got a FULLTEXT index. select url,name, , MATCH(name) AGAINST ( 'zen*' IN BOOLEAN MODE) as A , MATCH(name) AGAINST ...
-1
votes
1answer
265 views

php mysql fulltext search? [closed]

I'm trying to have a full-text search says there is no data CREATE TABLE IF NOT EXISTS `opportunities` ( `opportunity_id` int(11) NOT NULL AUTO_INCREMENT, `hotel_id` int(11) NOT NULL, ...
0
votes
1answer
307 views

mysql fulltext index

I need MySQL fulltext search to index something like 207/12.25/07/2012 the database has minimum 2 million rows and growing, so correct indexing is absolutely essential. Please help. Right now it seems ...
0
votes
0answers
163 views

SQL Server full-text search - find word index

Expressions put to CONTAINS functions can be various, like: select top 10 * from sys.dm_fts_parser('FORMSOF (FREETEXT, run)',1033,null,0) Is it possible to find word index in row found by ...
0
votes
1answer
124 views

Mysql fulltext search performance with SQL_CALC_FOUND_ROWS

I'm trying to optimize the performance of some queries in my application. In one query with multiple joins and a fulltext search I use SQL_CALC_FOUND_ROWS in a first query for pagination. ...
0
votes
1answer
128 views

MySQL: Boolean fulltext, search for words that begin/end with x?

Is it possible to match against words that begin or end with the searchstring? Example: I want to find a column that contains the word "pineapple". I want to find that row by searching for "pine" or ...
1
vote
4answers
187 views

Mysql GROUP BY, keep row value that has the highest score

In two FULLTEXT searches, I look for the search terms in the title of the book and the tags and get the following result: rScore tScore ID ... 1.235689725827653 ...
1
vote
1answer
193 views

SQLite fulltext virtual table normally usable?

Even after reading a lot about the fulltext index of SQLite and a question arises that I didn't see answered anywhere: I already have a table that I want to search with the fulltext index. I would ...

1 2 3 4 5 7