sql server full text search:
Hi,
'a' character is considered as a "noise word". It is not indexed and is
removed from your search pattern. In order to not consider single characters
as noisy, edit noise words file corresponding to your language in C:\program
files\Microsoft SQL Server\MSSQL.2\MSSQL\FTData (noise<LANG>.txt). Don't
forget to restart MSFTE Service and to rebuild your index.
--
Jean-Pierre Riehl
http://blog.djeepy1.net http://www.bewise.fr [quoted text, click to view] <g.lebek@wasko.pl> wrote in message
news:1188465549.617156.124510@50g2000hsm.googlegroups.com...
> hi
>
> FTS gives me no results all the time.
>
> from the beginnning i have created table with columns: ImageColumn
> (Image), document_type(varchar(4)) and filepath(varchar(200))
> i have created FullTextIndex on column ImageColumn and type -
> document_type.
>
> no i have an application which convert documents to binary and i
> insert them to ImageColumn column. As i open the table i see <binary
> data> on ImageCol column. It is correctly presented cause i have read
> data from that column and usedBinaryWriter and as a result i had the
> same document file.
> in document_type column i have extensions = doc or htm
>
> i use queri in SQL console
> Select * from cm_search_documents WHERE FREETEXT(ImageCol, 'a')
> and it gives me no results every time...
>
> I have SQL Server 2005 and enabled FTS cause it works on strings...
>
> anyone?
> thanks in advance
>
hi
FTS gives me no results all the time.
from the beginnning i have created table with columns: ImageColumn
(Image), document_type(varchar(4)) and filepath(varchar(200))
i have created FullTextIndex on column ImageColumn and type -
document_type.
no i have an application which convert documents to binary and i
insert them to ImageColumn column. As i open the table i see <binary
data> on ImageCol column. It is correctly presented cause i have read
data from that column and usedBinaryWriter and as a result i had the
same document file.
in document_type column i have extensions = doc or htm
i use queri in SQL console
Select * from cm_search_documents WHERE FREETEXT(ImageCol, 'a')
and it gives me no results every time...
I have SQL Server 2005 and enabled FTS cause it works on strings...
anyone?
thanks in advance