Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
61 views

SQL Server full text search issue

I have a problem with full-text search results, I need to find rows that contain " spray " in name column and not contains " men " in description column. select top 10 ftt.RANK, ID, name, description ...
2
votes
3answers
358 views

SQL Server - Free text search with empty keyword

Below is a simplified version of my sql query that uses CONTAINSTABLE for full text searching. DECLARE @pSearchFor AS NVARCHAR(100); SET @pSearchFor = 'SomeKeyword'; SELECT MS.[ModuleScreenID] AS ...
2
votes
2answers
284 views

CONTAINSTABLE query not recognising small words

I'm using CONTAINSTABLE to search two table columns. Once the search contains small words like 'the' 'for' 'a' the search returns no results even when they are actually present in the column. Quick ...
2
votes
3answers
557 views

AND statement for multiple columns in fulltext index

I have a fulltext indexed table and try to query for results matching multiple words. E.g. I have a address table with the indexed columns address_text, zip_code and city. | ROW | address_text | ...
2
votes
0answers
496 views

How to weight in full-text search

I want to search on a phrase, for example "search preference". I want to return the phrase itself as most heavily weighted. Next I would want to return "search" and/or "preference". And, in lowest ...
1
vote
1answer
75 views

Auto resizing NSBox

I have NSBox with NSTableView siting inside it. I have disabled the scrolling in the table and trying to auto resize the NSBox to mach the number of entries in NSTableView but don't know how to...any ...
1
vote
2answers
194 views

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 ...
0
votes
1answer
62 views

how to write containstable searchcondition with and's and or's

Currently trying to write a select statement with a containstable and the search condition is giving me some grief. The purpose is to search a table with 3 different parameter types and rank the ...
0
votes
0answers
40 views

Sql server fulltext search issue

I'm working with Sql Server 2008 and I want to execute a query using my FullText index, I'm using CONTAINSTABLE so as I can order by RANK, but i have a problem with the search condition, I want to ...
0
votes
0answers
76 views

SQL Expertise needed

Not a SQL expert, but I have come this far :) I have a working query which I would love to also get a RANK from - hence the need to use CONTAINSTABLE instead of CONTAINS. How can I convert this ...
0
votes
1answer
290 views

Significant difference between contains and containstable?

I have a full-text index created upon a column of type varchar(max) with filestream enabled. The filestream contains data such as JPG's, TIF's, PDF's, and XML's (although this is mostly irrelevant to ...
0
votes
1answer
581 views

CONTAINSTABLE with wildcard works different in SQL Server 2005 and SQL Server 2008?

I have two same databases one on SQL Server 2005 and one on SQL Server 2008, it have same SQL_Latin1_General_CP1_CI_AS Collation, and full text search catalogs have the same settings. These two ...
0
votes
2answers
191 views

Escape ContainsTable Keywords

How can I escape ContainsTable control keywords (such as NEAR or ISABOUT) so that Full Text Search will actually look for those words, and not treat them as control keywords?
0
votes
1answer
160 views

are there any special conditions with '*' character in full text search

i am using sql server 2005 i have a stored procedure which searches database with containstable method the problem is when i search some prefix with '*' character i can't see the records which have ...
0
votes
3answers
552 views

SQL Server 2008 CTE And CONTAINSTABLE Statement - Why the error?

I am testing out moving our database from SQL Server 2005 to 2008. We use CTE's for paging. When using full-text CONTAINSTABLE, the CTE will not run and generates an error. Here's my non-working ...
0
votes
1answer
1k views

SQL Server Full Text ContainsTable function Rank issue

Is is possible to increase the Rank of the ContainsTable results if its an Exact match. I have a fulltext query like this select iname,rank from ItemSearch_View sv INNER JOIN ...
0
votes
1answer
335 views

My ContainsTable query is not working - please help :)

I've got a full text catalogue setup. It has a unique key count of 117 with 19 items. The table has 19 rows only. The table has an NVARCHAR(50) field called ClientGuid. It's a guid with some weird ...