Tagged Questions
The full-text tag has no wiki summary.
7
votes
3answers
1k 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 ...
6
votes
4answers
6k 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 ...
6
votes
6answers
7k 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, ...
5
votes
4answers
2k 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 ...
5
votes
1answer
753 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 ...
4
votes
2answers
506 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 ...
4
votes
3answers
1k 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 ...
3
votes
3answers
217 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
202 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 ...
3
votes
2answers
818 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 ...
3
votes
1answer
331 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, ...
2
votes
2answers
66 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 ...
2
votes
1answer
63 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 ...
2
votes
1answer
56 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 ...
2
votes
2answers
3k 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,
...
2
votes
1answer
339 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?
1
vote
2answers
222 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 ...
1
vote
1answer
156 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 ...
1
vote
1answer
131 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 ...
1
vote
1answer
254 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
1answer
69 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 ...
0
votes
1answer
98 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 ...
0
votes
1answer
55 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 ...
0
votes
1answer
45 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 ...
0
votes
3answers
188 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
34 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 ...
0
votes
1answer
524 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) ...
0
votes
1answer
352 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
280 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
3answers
163 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 ...
0
votes
2answers
1k 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 ...
0
votes
1answer
506 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 ?
0
votes
1answer
126 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 ...
0
votes
2answers
262 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
511 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.