Hi,
I have a record in the "books" table, column "rawtext" of type varchar which starts with "This is a sample of the case-----------------------------OC Register".
When I try to run query:
select * from books where contains(books.*, '"this is*"'), the query does not return anything. It is working for other phrases and one-word searches. The execution of the select statement has not been consistent.
My fulltext index definition is:
CREATE FULLTEXT INDEX ON dbo.books
(
Topic
Language 1033,
RawText
Language 1033
)
KEY INDEX PK_books
Thanks for your help!
tinac99
I have a record in the "books" table, column "rawtext" of type varchar which starts with "This is a sample of the case-----------------------------OC Register".
When I try to run query:
select * from books where contains(books.*, '"this is*"'), the query does not return anything. It is working for other phrases and one-word searches. The execution of the select statement has not been consistent.
My fulltext index definition is:
CREATE FULLTEXT INDEX ON dbo.books
(
Topic
Language 1033,
RawText
Language 1033
)
KEY INDEX PK_books
Thanks for your help!
tinac99