Question : Full Text Search Problems MSSQL

Hi,

I'm having a problem where I have a full-text catalogue setup on a table "candidates" where the "CVText" field is the text that is indexed. Some our our clients have noticed that, when refering to a candidates name, no CV's are returned even thou the "CVText" field clearly contains it. The text is saved from our server via the Word Object and saved as Word HTML which sucks really as Word doesn't make a good job at all.

Would the HTML be causing a problem? Here is an example of "CVText":

------------------

<span style='font-size:
24.0pt;font-family:"Arial Black";color:black;text-decoration:none;text-underline:
none'>ANDRE SANTANA</i>


................. etc
------------------

And part of the SQL statement is:
... INNER JOIN CONTAINSTABLE(candidates, *, '("ANDRE" AND "SANTANA")') AS K ...

The HTML, as bad as it is, does contain "ANDRE" AND "SANTANA" so why is it not being returned?

Thanks.

Answer : Full Text Search Problems MSSQL

>>Would the HTML be causing a problem? Here is an example of "CVText":<<
That could well be the case.  But first I would correct your syntax as follows (no paranthesis):

INNER JOIN CONTAINSTABLE(candidates, *, '"ANDRE" AND "SANTANA"') AS K ...

If that still fails than try this:
INNER JOIN CONTAINSTABLE(candidates, *, '">ANDRE" AND "SANTANA*"') AS K ...

Of course that could be a problem if the order of the names is reversed.
Random Solutions  
 
programming4us programming4us