Tagged Questions

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, ...
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
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
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 ...
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
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
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
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.