Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
154 views

CROSS APPLY a FREETEXTTABLE

MS SQL Server 2005: table1 has a full text index. I want to run multiple freetexttable searches against it in a single query, but the two attempts i have fail. any help would be appreciated, thanks! ...
2
votes
1answer
319 views

FREETEXTTABLE always has a rank of 0

I'm using SQLServer 2008 and if I perform the following query: SELECT * FROM FREETEXTTABLE(SomeTable, Name, 'a name that I know exists') I get the rows back that I would expect, but the rank ...
2
votes
2answers
371 views

Search a full text index for 'c#'

I have a table (lets say it has one column called 'colLanguage') that contains a list of skills and has a full text index defined on it. One of the entries in the table is 'c#' but when I search for ...
1
vote
2answers
231 views

SQL Server Query Some time take too much time with freetexttable - Looks Index Problem

Following is my query, it takes some time around 1 minute and some times gives a result in a second, problem occurred specially i execute query after some time ago, or put some new keyword in query. ...
1
vote
1answer
216 views

SQl server search, using FREETEXTTABLE (Transact-SQL)

Thanks in Advance. I am implementing FREETEXTTABLE into a search form. I wanted to know how the following queries would behave and what results would be returned. Also, would like to know if brackets ...
1
vote
1answer
100 views

Searching numeric strings with Full-Text Search in SQL 2005

I'm using the SQL Full-Text Search and have a stored proceedure that uses the FREETEXTTABLE function. This all works great, however, I have noticed that if I search for something such as 'Chapter 19' ...
1
vote
2answers
497 views

Ordering FREETEXTTABLE result UNIONed with standard SELECT by Rank

I had a working FREETEXTTABLE query that searched for a @searchString. I now need to UNION that with another simple query that tries to parse the @searchString into an INT, and if it succeeds, ...
1
vote
1answer
342 views

Slow inital query when using FreeTextTable in SQL Server 2005

The following FreeTextTable query takes > 10 seconds on the first request, but about a second for subsequent requests: SELECT [Key], [Rank] INTO #matches FROM FREETEXTTABLE(Book, [Description], ...
0
votes
0answers
39 views

FreeTextTable : Using multiple tables

if I have two table like below. (Just for illustration) Emp(Id, UserName, FirstName, Lastname) EmpAddress(Id, EmpId, Street, City, Country) I need to do a free text search, I was using the query ...
0
votes
1answer
97 views

SQL Server 2005 - FREETEXTTABLE ignoring single characters

I have an issue with a query I'm running. Basically it's a search on a table of books. This query below uses the FREETEXTTABLE command to rank the search for an author: @author = 'lewis c s' SELECT ...
0
votes
3answers
528 views

Why is Select distinct from function returning duplicates?

I tried two different variations on the same thing. The first version selects from freetexttable, the other insets into a temp table and selects from that. I've tried numerous variations on the ...
0
votes
1answer
451 views

Do MS SQL Server 2000 full text index queries using freetextable use stemming?

I'm using MSSQL's full text indexing on a handful of tables in my CMS and am unfortunately stuck with SQL Server 2000. I'm querying the index using freetexttable joins and am having pretty good ...
0
votes
1answer
394 views

FreeTextTable filter search string

I am joining onto a freetexttable using a searchTerm parameter which is also used in a number of other freetexttables in the query. I would like to remove the city name from this parameter if it ...
0
votes
1answer
731 views

When using FREETEXTTABLE in ms sql server how do you search on the primary key?

I have a query using a FREETEXTTABLE full text search which works perfectly for every column included in the index except for the primary key. The primary keys are in a format like abcdef123456 and ...
0
votes
1answer
598 views

FREETEXTTABLE Returning Incorrect Rank Result

I'm trying to fix a bug with a site search function and have isolated it down to an issue with the FREETEXTTABLE function. I have a the following query: SELECT * FROM dbo.SiteContentForSearch INNER ...
0
votes
2answers
3k views

Why or How does FREETEXTTABLE give a rank value higher then others

There is a store procedure that uses FREETEXTTABLE twice on two tables and then merges the results and returns the top 50. The problem is if I do a search on "Women of Brewster", the results returns ...