indexing for full-text search
1
vote
1answer
15 views
MySQL fulltext split on letters/numbers
I have a table of products, e.g. cars. I want users to be able to search using multiple terms, e.g. for autocompletion. LIKE %term% is way to slow, because it's huge table. In order to make it fast, I ...
1
vote
0answers
19 views
Create fulltext index within Entity Framework Coded Migrations
TLDR; How do you add a full text index using Entity framework 5 coded migrations
I'm having issues adding a full text index to a database using Entity framework migrations. It needs to be there from ...
0
votes
0answers
17 views
Does a Full-Text Index work well for columns with embedded code values
Using SQL Server 2012, I've got a table that currently has several hundred-thousand rows, and will grow.
In this table, I've got a nvarchar(30) field that contains Medical Record Number (MRN) values. ...
0
votes
0answers
21 views
Multiple Position Increments in Lucene
I use PositionIncrement attribute for finding words at some distance from each other.
And I have two problems with that:
1) I want to search words within one sentence. A possible solution would be to ...
0
votes
1answer
46 views
SQL Server : full-text search with join
<groveling>
This is probably something very basic. I'm brand new to full-text indexing and searches and I've been trying to get this to work for hours so please go easy on me :)
...
1
vote
2answers
70 views
PostgreSQL Full Text Search: why search is sooo slow?
I have a small PostgreSQL database (~~3,000 rows).
I'm trying to set up a full text search on one of it's text fields ('body').
The problem is that any query is extremely slow (35+ seconds!!!).
I ...
1
vote
1answer
76 views
Syntax error when using NEAR with maximum_distance value
How do I modify this query to search for the keywords that are only two words apart?
select id, SubjectText from dbo.email where contains
([ContentText],'execute NEAR class near program near code ...
0
votes
2answers
132 views
Search for ampersand (&) when using containstable in MS SQL Server
I'm using a stored procedure on a autocomplete dropdownlist to retreive a list of clients. Some of the clients have an '&' (ampersand) sign in the name e.g. 'H&M', 'Marks & Spencers' and ...
1
vote
1answer
76 views
Create Full Text index script on all columns without specifying each column by name
How can I have a full text index on all columns without specifying individual column names via script in SQL Server?
My table has 50 columns, and I'd like the full text index to cover them all.
Can ...
0
votes
2answers
108 views
SqlException was unhandled by user code. (Full-Text index)
I am using vs 2012 Professional and SQL-Server 2012 Express.
I was trying to run Admin.aspx, that has a textbox to search for users in a db.
However, each time I try to search for a username I get ...
2
votes
0answers
41 views
Strange SQL Server Fulltext match
I stumbled upon strange fulltextindex behavior in SQL Server 2008 R2 (my word-breaker language is German).
I have this text indexed:
[...] Java Editorerstellung in Eclipse eines ...
0
votes
0answers
11 views
How to pass a custom analyzer to @Indexed annotation?
Neo4J lets us provide a custom Analyzer when creating indexes.
How can we achieve this with Spring-Data-Neo4j? Since @Indexed doesn't have this property, what are other options?
0
votes
3answers
74 views
Lucene prohibited clause “fuzzyfied” where it shouldn't
I'm writing a filter based on Lucene: I have some results from an API and I would like to enforce the results to match a certain query (the API sometimes doesn't work). As the results are gotten from ...
0
votes
0answers
33 views
Is really necessary to have two fulltext indexes for text columns?
I inherited the codebase for a custom CMS built with MySQL and PHP which uses fulltext indexes to search in content (text) fields. When analyzing the database structure I found that all relevant ...
3
votes
2answers
306 views
How to search fields with wildcard and spaces in Hibernate Search
I have a search box that performs a search on title field based on the given input, so the user has recommended all available titles starting with the text inserted.It is based on Lucene and Hibernate ...
0
votes
0answers
38 views
Any database system/lucene implementing compressed self-indexes?
I am currently researching efficient text retrieval systems and compared SQL Databases and Lucene.
As far as I know those systems just use an inverted index for retrieving the text.
However, I just ...
0
votes
1answer
111 views
INDEX or FULLTEXT to store a VARCHAR(1000) in MySql
My purpose:
I need to make SELECT WHERE string IN ('...') queries, and string is a VARCHAR (1000)
The question:
I do not know if I should use a FULLTEXT index for it or just a simple INDEX
The ...
0
votes
0answers
34 views
Trouble creating full text index on a view when primary key is repeating
I am trying to create a SQL view with an unique index but due to the nature of our view main table's pkey will be repeated(duplicated). This gives us a problem when trying to create a full text index.
...
0
votes
0answers
76 views
Problems indexing PDF documents with Foxit iFilter on SQL Server 2008
I have a SQL Server database and want to index PDF documents in the database. I use the Foxit iFilter. The iFilter is already installed but after indexing the file table the log consists of a huge ...
1
vote
2answers
185 views
How can I do indexing .html files in SOLR
The files I want to do indexing is stored on the server(I don't need to crawl). /path/to/files/
the sample HTML file is
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
...
1
vote
1answer
96 views
How to refresh a full text index from within a SQL Server transaction
I am having an issue similar to the one described here:
How do I force a refresh of a fulltext index within a transaction in mssql?
However, the recommended solution posted there does not work. I ...
1
vote
1answer
163 views
Strange issue with SQL contains - ignoring starting characters of a string
I am experiencing a strange issue with the sql full text indexing. Basically i am searching a column which is used to house email addresses. Seems to be working as expected for all cases i tested ...
0
votes
2answers
125 views
postgres 9.1 full text search returning no results
I have searched on the web for many days by it seems the internet has never heard of my problem:
I have a postal address database table holding about 37M records for United Kingdom, which has a ...
0
votes
1answer
41 views
Which tool is better for storing html enabled text (closed email system)?
So my case is a closed email system.
The emails are HTML enabled.
What is needed:
Full text searching (there are over 1 million emails in database, but they are usually pre-filtered based on users ...
0
votes
1answer
78 views
FullTextIndex in NexusDB, How to tokenize the searchstring
We are using NexusDB for a small database. We have a table with a FulltextIndex defined on it.
The index is configured with the following options:
Character separator
ccPunctuationDash
...
0
votes
1answer
56 views
Choose an appropriate language for full text index in SQL server
I want to add a column with Hungarian language to my table, and I want to full-text-index it.
The problem is that SQL Server doesn't have Hungarian language registered, and I can't find any good tip ...
0
votes
0answers
80 views
MySQL - Special characters in MATCH
I have a query with FULLTEXT index as given below:
select * from employee where MATCH(first_name) AGAINST ('ABC') AND MATCH(last_name) AGAINST('FA\'AUI')
There are 2 or 3 records, like the above ...
2
votes
2answers
86 views
Text Search Engine for Mailing List Archive Cataloging and Search
I'm working with a mailing list archive and am tasked with setting up basic search, boolean search, and ultimately some sort of more intelligent tag-based searching.
I see both commercial products ...
1
vote
1answer
106 views
Force indexing of a filestream in SQL Server 2012
Is it possible to force somehow the indexing service of MS SQL Server 2012 to index a particular filestream/record of a filetable?
If not, is there any way to know if a filestream/record has been ...
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 ...
1
vote
1answer
451 views
How does SQL Server full-text Index actually index the words in a catalog?
I have been searching long and hard for an answer regarding the processes full-text index uses to index the full text catalogs assigned to a document, where the document primary key is included in the ...
0
votes
1answer
71 views
Suggestions for Searching Document Content- Is Windows Search Any Good? Simple MySQL?
I am writing a web script for a small online documents management company that wants to allow users to quickly search the content of their files online.
While many accounts are very small (under 100 ...
1
vote
4answers
374 views
MySQL FULLTEXT not matching string with wildcard
I'm trying to do a basic full text search on my MySQL database - here's the table I'm using:
tables removed
Any input would be appreciated, as I've not used full text searching before (or indexing ...
2
votes
1answer
176 views
Mixed queries against full-text index
I am using SQL Server 2012. A table has a text and a date column. The text column has a full-text index. The query issues CONTAINS against the full-text column but it also needs to include a ...
0
votes
0answers
58 views
Query searched in FullText Search
I'm having a very specific issue with Full - Text Index search.
I'm trying to search as follows:
Contains(Searchfield,'IT`dash`10116')
Using SQL 2008, I found that it looks for an exact match of ...
0
votes
0answers
75 views
SQL Full Text Index - Ignore Dollar Amounts / Use Wildcards
I've got some documents that have been run through and OCR and I'm indexing them via SQL Server and a fulltext.
I've got a stop list set up but that appears to only work for whole words. Does anyone ...
0
votes
1answer
105 views
lucene indexing for sub directories [closed]
Hi I am working on a swing Application . The problem is I have to give html files to client after indexing . For indexing I am using apache lucene but the problem is, I have data in different ...
2
votes
2answers
82 views
Perforce Full-text Searching
Quick question as likely I will have more later.
I'm currently investigating document management solutions and was wondering if anyone has been able to set up full-text searching of a Perforce ...
0
votes
1answer
48 views
full text indexing only returns 2 rows
I have a table for food and hotels
like
CREATE TABLE `food_master` (
`id` int(6) unsigned NOT NULL auto_increment,
`caption` varchar(255) default NULL,
`category` varchar(10) default NULL,
...
3
votes
1answer
126 views
Can IFilters 2.0 full-text index the text in a chart in an Office 2007 document?
I have a full-text catalog containing PowerPoint presentations. Some of those presentations contain charts, and in those cases, the chart is usually the main thing on the slide. When doing a search, I ...
4
votes
3answers
745 views
Postgresql ILIKE versus TSEARCH
I have a query with a number of test fields soemthing like this:
SELECT * FROM some-table
WHERE field1 ILIKE "%thing%"
OR field2 ILIKE "%thing"
OR field3 ILIKE "%thing";
The columns are ...
0
votes
1answer
232 views
Add FullText Capability to existing table in MySql [duplicate]
Possible Duplicate:
MySQL/PHP Search Efficiency
How to Add FullText Capability to the existing table in MySQL.
I've seen adding it directly at the time of table creation as follow.
CREATE ...
1
vote
0answers
68 views
Document storage / searching [closed]
I am hoping you can point me in the direction of the correct technologies. I am part of a small software development team that have good skills in c# development and SQL databases.
We have been ...
1
vote
0answers
60 views
.net sql integration tests & full text catalog
I'm trying to write some integration tests for a part of our site that uses a stored procedure instead of running through EF.
We just want to ensure that the data that we get back from the stored ...
1
vote
1answer
503 views
Using Match and Against in MySQL and CodeIgniter
I am trying to implement a search feature into my codeIgniter project. I have a table called product_search, where I am set a fulltext index using the following command:
ALTER TABLE `product_search` ...
0
votes
1answer
105 views
PHP: convert mysql code so it will work with innodb?
I have migrated from myisam to innodb and i had to remove fulltext indexes from tables.
now some parts of my script doesn't work, how can i convert the below code so it will work with innodb?
...
3
votes
1answer
110 views
mysql - any way to help fulltext search with another index?
Let's say i have an "articles" table which has the columns:
article_text: fulltext indexed
author_id: indexed
now i want to search for a term that appears in an article that a particular ...
2
votes
1answer
160 views
How to ignore noiseXXX.txt files for a specific column in SQL Server 2005?
I have a product table where the description column is fulltext indexed.
The problem is, users frequently search a single word, which happens to be in the noiseXXX.txt files.
We'd like to keep the ...
2
votes
1answer
206 views
Re-build SQL Server Full Text Index
I have a client who is utilizing full-text indexing in their application. They rebuild the indexes via the application. When they do this, the manually remove all columns from the catalog. Then they ...
1
vote
1answer
150 views
MySql FULLTEXT INDEX with JOINS
Is it possible to create a fulltext index on two columns derived from the inner-join of two tables? If yes, Please give me the syntax with an example.
Suppose
`table1 = Car_first (Columns: ...

