Tagged Questions

0
votes
1answer
60 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 …
0
votes
3answers
145 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 …
2
votes
3answers
353 views

mySQL MATCH across multiple tables

Hi, I have a set of 4 tables that I want to search across, each has a full text index, and here is my query; SELECT categories.name AS category, categories.id AS category_id, …
0
votes
1answer
93 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
97 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?
4
votes
1answer
259 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 …
0
votes
2answers
124 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 th …
0
votes
4answers
1k 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 h …
0
votes
1answer
102 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 …
4
votes
3answers
541 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() …
0
votes
1answer
58 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 serial_no,writer …
0
votes
2answers
231 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.