using SQL server 2005 I have a table which has full text search index enabled
when I run a search using the 'Near' option it returns rows which meet the criteria, how ever the criteria are not 'near' each other they are several hundred words apart.
What is the problem
How near is near
thanks in advance
Glyn
Hi,
The NEAR operator is used to find words which are in close proximity to one another. For example, consider the following three rows in a table:
TextValue
==========
The product being used is SQL Server 2005 Enterprise Edition
We are using full text search in SQL Server 2005 Enterprise Edition
We are performing a test with full text search in SQL Server 2005 Enterprise Edition
Now if I have a query of the following type:
select TextValue
from dbo.sample_tbl
where contains (TextValue, 'search NEAR Server')
This will return the 2nd and the 3rd rows as both the words are approximately close to each other. The NEAR operator returns those rows which have both the words approximately close to each other. When several proximity terms are chained, all proximity terms must be near each other.
|||Thanks but the search I have is not working
I have a text string
'FTS_STRING_SAMPLE1 can control instantiation to suit the system environment. Relying on delayed instantiation minimizes the amount of memory required by the application, although it might trigger many server requests when properties are referenced.
Instance classes, objects that represent real database objects, can exist in three levels of instantiation. These are minimal-instantiated (only the minimal required properties are read in one block), partially instantiated (all the properties that use a relatively large amount of memory are read in one block), and fully instantiated. Un-instantiated and fully instantiated are the traditional states of instantiation. The partially instantiated state increases efficiency because a partially instantiated object does not contain values for the full set of object properties. Partial instantiation is the default state for an object that is not directly referenced. When one of these properties is referenced, a fault is generated that prompts a full instantiation of the object FTS_STRING_SAMPLE2.'
SELECT *
FROM FTS_TEST_TABLE
WHERE CONTAINS(FTS_TEST_TEXT, 'FTS_STRING_SAMPLE1 NEAR FTS_STRING_SAMPLE2');
It returns the row, however we believe it shouldn't
Glyn
没有评论:
发表评论