The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
43 views

What search technology does StackOverflow use in 2013? [closed]

I know that in the past StackOverflow used SQL Server Full-Text search. Recently searches on StackOverflow became much faster. What search technology does StackOverflow use now (in 2013)? Is it ...
0
votes
1answer
24 views

How to connect DisMax handler solr?

How should I configure solrconfig.xml for connecting DisMax plugin? I need it to use full-text search.
1
vote
1answer
16 views

Organisational solution for 3million plus records where full-text search unworkable [closed]

What is the best solution for full-text searches with very high volume, single database with over 3 mill. records. Current searches limited to specific fields as time required to return for a ...
1
vote
1answer
49 views

In SQL Server, how to configure Fulltext Search to index 1/2, 1/3, 1/4, etc

I have created substitution thesaurus entries for the following: Pair: 1/2, half Pair: 1/3, third Pair: 1/4, quarter Pair: 1/8, eighth When I do a search with a search term such as, "1/2 inch pipe" ...
-5
votes
1answer
228 views

SQL text LIKE doesn't always work [closed]

I'm comparing text values in the same table and same column in SQL Server 2008, but the results are sometimes incorrect. Possibly relevant column info: Data type: text Full Text: True ...
2
votes
1answer
91 views

Logical short circuiting in SQL Server 2008 seems to fail for the CONTAINS full text predicate

I have a pretty complicated query which sometimes returns results very slowly. It was clear from the beginning that the culprit is the part of the WHERE clause that has to do with full text search. So ...
1
vote
1answer
59 views

Enabling full-text search facility on SQL Server 2008

I have SQL Server 2008 installed on my computer along with the full-text search facility. The problem is that full-text search is not running. When I go to SQL Server services in Computer Management I ...
1
vote
1answer
173 views

MySQL full text index underscore

I have a problem with MySQL's full text index, it treats underscore as part of a word (why? dunno). This is the string I have in my table, VA_-_Some_Album And this is the query for it: SELECT * ...
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 ...
0
votes
1answer
349 views

Redis full search text with C#

Is there any way to do full-text search on Redis with C#?
3
votes
1answer
511 views

mysql full-text search not working for 3 characters

In my website I have implemented search feature using full-text search. It works fine usually but not sometimes like it gives results when I search with keyword "ship" but not "shi" But it should ...
0
votes
1answer
50 views

MySQL full-text search: “proves” gets “proves” but not “prove”

Please show me where I'm wrong with this query: SELECT * FROM `pages` WHERE MATCH ( abstrak) AGAINST ('+"prove"' IN BOOLEAN MODE) doesn't get 'proves', when I want is it gets 'proves'.
0
votes
2answers
179 views

searching for a group of keywords in multiple fields using lucene

these are the columns of my database indexed by lucene: category_name / sub_category_name / classification_name / item_name / supplier then sample data are as follows: ALUMINUM / ORDINARY / 3" / ...
0
votes
1answer
233 views

How to do a Full-Text search within a Linq query when using LLBLGen

[Using LLBLGen Pro 3.1 with Entity Framework 4, .NET 4 and SQLServer 2005] I've got a linq query that includes .Contain(keyword); IEnumerable<Product> products = null; using (var ...
2
votes
2answers
152 views

Can PostgreSQL's full-text indexing index 1- or 2-character terms?

When performing a query like: select count(*) from myTextTable where tsv @@ plainto_tsquery('english', 'TERM'); I've noticed that PostgreSQL does not use the GIN index (that I defined on the tsv ...
0
votes
1answer
763 views

Index Word/PDF Documents From File System To SQL Server

I'm trying to come up with a simple solution to a problem I have because all of those I have found so far just seem too complicated! The situation is that we use a proprietary application for ...
4
votes
3answers
661 views

Get Full-Text Feed with Delphi

I'm developing a Delphi program that reads the source of a feed through the component Indy idHTTP.. but the feed does not appear complete, appears only its summary, I mean the feed does not show the ...
3
votes
1answer
474 views

How to implement keyword and location search with MongoDB?

I am trying to implement a web/smart phone app that allow users to search for places based on keywords and location and here is the requirement: Users shall be able to search by typing in keywords ...
0
votes
1answer
108 views

Full text search in more than 2 tables with different data

Hi I have this sql statement SELECT *, MATCH (first_name,last_name) AGAINST ('*?*' IN BOOLEAN MODE) AS score, MATCH (groups.groupname) AGAINST ('*?*' IN BOOLEAN MODE) AS sscore FROM users INNER JOIN ...
1
vote
2answers
685 views

SolrNet Newbie - How to handle multiple Where Clauses

I just started exploring SolrNet. Previously I have been using MSSQL FULL TEXT. In sql server, my query make full text searches and also have multiple joins and Where clauses. I am also using custom ...
0
votes
1answer
64 views

mysql database design full-text question

I have a legacy mysql database and there's this table which has a few full-text indexed columns. In each of these columns the data stored is separated by space. It's like token1 token2 token3 with ...
4
votes
3answers
2k views

Full-Text Substring Searching in iOS

I need my iPhone / iPad app to be able to quickly search through about 10,000 records (about a paragraph worth of text, each), for any substring contained within the record. So if the record contains ...
4
votes
2answers
746 views

Entity Framework Code First: How to specify the index name

I'm using code first to generate my database. I will also be using Full Text for searching. However, I cant create the full text index programatically because the primary key index name given by EF is ...
1
vote
1answer
656 views

full-text mysql search in rails

I'm trying to add a simple mysql full-text search to a small table <2000 entries. Please don't tell me to install solr, or any other search gems. I've tried to run them and it seems to be one ...
2
votes
1answer
88 views

Extracting URLs from text and using dictionary to translate face book in free text to facebook.com

I need to extract websites from text survey responses. The algorithm should broadly match. For example "patients like me" or "patientslikeme" should be recognized as "patientslikeme.org". I have ...
8
votes
3answers
4k views

RavenDB full-text search

Can you please tell how to perform simple full-text search in RavenDb. The database is stored document: Movie {Name = "Pirates of the Carribean"}. I wish that this document was found on the search ...
2
votes
1answer
96 views

Full Text Search in SQL Server 2005

I am working on the Full Text Search in Sql Server 2005. I have created a catalog and then an index on a particular table. I am searching for data using FREETEXTTABLE(tablename,*,@SearchKeyword). So ...
0
votes
3answers
359 views

Using Full-Text Search in SQL Server 2005 across multiple tables, columns

I have a problem, I created a full text search query which return a record(s), in which the paramater I have supplied match(es) in every fields(full-text indexed) of multiple tables. The problem is , ...
0
votes
1answer
61 views

Full-Text Search for category with all parents in a row

Full-Text Search for category with all parents in a row: CatLevel1 >> CatL2 >> CatLn >> SearchedCategory I've got 4 columns in my category table: CatID, CatName, CatDepth, ParentID Some categories ...
13
votes
4answers
11k views

MySQL Full-text Search Workaround for innoDB tables

I'm designing an internal web application that uses MySQL as its backend database. The integrity of the data is crucial, so I am using the innoDB engine for its foreign key constraint features. I ...
0
votes
1answer
909 views

Alternative MySQL fulltext search syntax

If you want the relevance and also the results to be sorted by relevance the common format of a FULLTEXT query is: SELECT name, MATCH(name) AGAINST('Bob') AS relevance FROM users WHERE MATCH(name) ...
4
votes
1answer
449 views

TOP 2 faster than TOP 1 in Sql Server?

we have a table with +- 500k rows in Sql Server 2005 database and one of its columns has a full-text index. We were doing some tests and found that SELECT TOP 1 ... WHERE CONTAINS(fullTextColumn, ...
0
votes
1answer
584 views

How do I schedule a SQL Server Full-Text rebuild in SSMS2008?

I have a question about scheduling a rebuild and reorganize of a SQL Server 2008 Full-Text Catalog. When I go to the catalog's Properties then Population Schedule, the wizard seems pretty straight ...
0
votes
2answers
436 views

Search in multiple tables with Full-Text

I'm trying to make a detailed search with asp and SQL Server Full-text. When a keyword submitted, I need to search in multiple tables. For example, Table - Members member_id contact_name Table - ...
0
votes
4answers
360 views

Any idea why contains(…) querys so slow in SQL Server 2005

I've got a simple select query which executes in under 1 second normally, but when I add in a contains(column, 'text') into the where clause, suddenly it's running for 20 seconds up to a minute. The ...
2
votes
1answer
186 views

Gotchas with SQL Server Full-Text Search

I want to compile a list of gotchas when using SQL Server full-text search in all versions. For instance, Here's a SQL Server Full-Text gotcha: SQL Server 2008 R2 has a new feature called ...
0
votes
2answers
2k views

How to change word-break characters in SQL Server Full-Text indexing

By default, when one tells SQL Server (currently using 2008) to Full-Text index a column, it treats characters such as "@" and "." as work-breakers, similarly to " ". I'd like to restrict the ...
9
votes
5answers
4k views

Full-text search for static HTML files on CD-Rom via javascript

I will be delivering a set of static HTML pages on CD-Rom; these pages need to be fully viewable with no Internet access whatsoever. I'd like to provide a full-text search (Lucene-like) for the ...
3
votes
1answer
6k views

mySQL MATCH across multiple tables

I have a set of 4 tables that I want to search across. Each has a full text index. Can a query make use of every index? CREATE TABLE `categories` ( `id` int(5) unsigned NOT NULL auto_increment, ...
0
votes
2answers
727 views

fulltext search for dataset

I'd like to implement fulltext search for a datatable ? are there any .net libraries which support indexing/searching on the fly ?
6
votes
1answer
2k views

List which columns have a full-text index in SQL Server 2005

How do I list all tables / columns in my database that have a full-text index?
5
votes
1answer
997 views

Implementing search on an ASP.NET MVC website

I've created a content-managed website using ASP.NET MVC. All content is stored in the 'Content' table in a SQL Server database, with the text itself stored in a column of datatype 'XML'. I want to ...
0
votes
1answer
169 views

full-text index returns incorrect results

I created a full-text index on a text column and subsequent contains queries return results that don't include the search term. An example query is: SELECT TOP 10 ...
2
votes
1answer
349 views

Return surrounding text for phrase found in full-text search, SQL 2005

I'm using a contains predicate to find phrases in a SQL Server indexed text field. Is there a way to return the portion of the text field that contains the searched phrase, or some area around it? ...
0
votes
2answers
324 views

Searching full-text fields in SQL Server to detect plagiarism

I'm storing papers in SQL Server 2005 and am looking for a way to paste in the text of a paper and then search for potential plagiarism (copied content) in the database. What's the best way to go ...
0
votes
2answers
751 views

How do I sort query results by keyword occurrence in column? (SQL Server Full-Text)

How do I sort the query results by keyword occurrence in column? I'm using SQL Server 2008 with Full-text indexing.
9
votes
6answers
11k views

Why the Full-Text indexing option is greyed out?

I installed SQL Server 2008 Express with Advanced Services, but when I try to create a new database, the option Full-Text indexing is greyed out, I believe the full-text indexing has been installed, ...
11
votes
3answers
2k views

Full-text search relevance is measured in?

I am making a quiz system, and when quizmakers insert questions into the Question Bank, I am to check the DB for duplicate / very highly similar questions. Testing MySQL's MATCH() ... AGAINST(), the ...