full-text-search

ASP.NET: Internal Site Search

I'm searching for some internal site search code. The scenario is: I'm having a site in which the content comes from database (CMS) which makes the pages dynamic. So the search tool should search this dynamic content too. I don't want to use readymade search engines like google, bing etc.... Do I need to make my own search control f...

How can I match "laptop" and "laptops" when search for "laptop" is performed using MySQL's match...against full-text search?

I'm trying to build a search feature in to my website. Searching is the primary purpose of the site and I am having a few issues with the MySQL search feature. I would like to be able to search with a single search string against multiple text fields. I'm using MySQL's match...against statements to perform a full-text search. I'm runni...

Postgres full text search across multiple related tables

This may be a very simplistic question, so apologies in advance, but I am very new to database usage. I'd like to have Postgres run its full text search across multiple joined tables. Imagine something like a model User, with related models UserProfile and UserInfo. The search would only be for Users, but would include information fro...

Cannot create a stop list in SQl 2008

I'm new to the stop list functionality in SQL 2008 and seem to be missing something obvious. I'm trying to exectue the following statement: CREATE FULLTEXT STOPLIST myStoplist3 FROM SYSTEM STOPLIST; GO and I'm getting the following error: Msg 102, Level 15, State 1, Line 1 Incorrect syntax near 'STOPLIST'. Any ideas? ...

how to get the text and properties(metadata like title,author,subject etc.,) of various files using ifilters?

Can the IFilters be used to fetch document metadata like (To, From fields from an msg format message) and also all types of files? anyone know the solution? ...

SQL Server Full-Text Search - No hit even though the word is present

Hi, I'm having problems with Full-Text Search on SQL Server 2005. In my setup, I am indexing a single column, let's call it Content. The indexing is done in the neutral culture since the column might contain text in different languages. The fulltext index is created as follows: CREATE FULLTEXT INDEX ON [dbo].[Table1]([Content]) KEY IN...

dm_fts_parser equivalent in SQL Server 2005

Is there a way to get the synonyms of the words in an expression, in SQL Server 2005? In SQL Server 2008 this can be done using dm_fts_parser function, but this one does not exist in 2005. EDIT: I found that there is a file that indicates the words used by Thesaurus, in %ProgramFiles%\Microsoft SQL Server\MSSQL.1\MSSQL\FTData and also t...

How can I match things like "C#" and "C++" in PostgreSQL's full text search?

Unfortunately the parser discards all punctuation, so that 'C', 'C++' and 'C#' all end up as 'c'. The only thing I can think of (aside from replacing the parser which isn't really an option right now), would be to implement my own miniature synonym dictionary before using any of the FTS functions, replacing "C++" with "Cpp" and "C#" wit...

In Solr, How to query against one field for distinct set of values in a multi-valued field

I basically want Solr to search each record of the multivalued field for my search parameter.. read on for my example: I am using Solr to index my data. I have application data in parallel arrays (in the form of multi-valued fields) that match a given product. See the following example, where make, model, and year are multivalued fields...

Is there a list of most common english words for indexing text for search?

Is there a free available list of the most common english words to remove from text for creating a search index? ...

Is it possible to use ContainsTable to get results for more than one column?

Consider the following table: People FirstName nvarchar(50) LastName nvarchar(50) Let's assume for the moment that this table has a full-text index on it for both columns. Let's suppose that I wanted to find all of the people named "John Smith" in this table. The following query seems like a perfectly rational way to accomplish thi...

boolean text search in python

i'm looking for an existing module(s) which enabled me to write basic boolean queries for matching and searching texts, WITHOUT writing my own parser etc. for example, president AND (ronald OR (george NOT bush)) would match TRUE against "the president ronald ragen" "the president ronald ragen and bush" "max bush was not a president" ...

Django MySQL full text search

I need to implement full text search for my Django application, running MySQL as backend. Let's say I've got a model as follows: class MyItem(models.Model): title = models.CharField() short_description = models.TextField() description = models.TextField() I would like to have results first for search term occurences in ti...

Search in multiple tables

Let's say I have tree tables: [ news ] id title text date [ posts ] id title text date [ gallery ] id title text date How can I perform a FULLTEXT search in these tree tables with one query? I just want to run the search on the title and text fields and get the id, title, date and the...

Indexed full text search in Eclipse?

Is it possible (via a plugin or other way) for Eclipse to build a full text index for a project, so that searching a String does not linearly search all the files in the project? (or does it automatically build such an index to speed up future searches?) ...

Speeding Up Access 2007 Text Searches

I have a database for tracking customer purchases over history. One of my forms allows you to search for a customer name, and a subform displays all recent purchases. I have a total of 474 customer records. I am tracking a total of 2119 purchase records. The BE and FE are already split, which may be slowing things down, but is needed...

How do I perform a MOSS FullTextSqlQuery and filter people results by the Skills managed property?

I am having trouble with a MOSS FulltextSqlQuery when attempting to filter People results on the Skills Managed Property using the CONTAINS predicate. Let me demonstrate: A query with no filters returns the expected result: SELECT AccountName, Skills from scope() where freetext(defaultproperties,'+Bob') And ("scope" = 'People') Resu...

Indexing PDF files with Symfony using Lucene

I am a Symfony developer and my web server is Linux. I already use the sfLucene plugin. What is the simplest way of indexing PDF files for search on a Linux PHP server? XPDF, installed like this Apache Tika via the SOLR sfLucene plugin branch A 3rd option? Thanks! ...

MySQL full-text search in Rails?

When I added search functionality to my first Rails app, I used Sphinx, after reading that using MySQL's built-in fulltext search was a bad idea. While Sphinx works well, it's a bit complicated to set up, and I feel there's too much overload for the simple searching functionality I require in my app. Searches aren't performed very often...

Possible to rank partial matches in Postgres full text search?

I'm trying to calculate a ts_rank for a full-text match where some of the terms in the query may not be in the ts_vector against which it is being matched. I would like the rank to be higher in a match where more words match. Seems pretty simple? Because not all of the terms have to match, I have to | the operands, to give a query such ...