You're welcome, Navin,
Good news. However, in order to answer your question, I need to know the OS
platform you have SQL Server installed on. Could you post the full output of
SELECT @@version ? This issue is a common one and depends upon the OS
supplied wordbreaker (Win2K vs. WinXP or Win2003), see
http://groups.google.com/groups?q=langwrbk+infosoft for more details of the
different behaviors between the OS supplied word breakers. Could you also
provide the FT Search (contains or freetext) query that you are using with a
sample of the text in the column?
Thanks,
John

Signature
SQL Full Text Search Blog
http://spaces.msn.com/members/jtkane/
> I did setup my server according to the instructuions and it works fine in
> searching XML documents. The issue now is that i have HTML content inside
[quoted text clipped - 12 lines]
> > from Microsoft or other 3rd party vendors, specifically, you can download
> > the MS XML IFilter from -
http://www.microsoft.com/sharepoint/server/techinfo/reskit/xml_filter.asp
> > Other 3rd party XML Ifilters vendors are: QuiLogic
> > http://www.quilogic.cc/ifilter.htm XML Ifilter enables crawling of
[quoted text clipped - 19 lines]
> > >
> > > Navin
nvishnu - 22 Apr 2005 23:38 GMT
Output of @@Version.
Microsoft SQL Server 2000 - 8.00.760 (Intel X86)
Dec 17 2002 14:22:05
Copyright (c) 1988-2003 Microsoft Corporation
Enterprise Edition on Windows NT 5.2 (Build 3790: Service Pack 1)
THe xml file in the column planxml for one of the rows looks like this.
<?xml version="1.0"?><OpWatch:Plan
xmlns:OpWatch="http://www.OpWatch.com/planner/OpWatchplan.xsd">
<OpWatch:Name>Crisis Management/Emergency Response Plan
Overview</OpWatch:Name>
<OpWatch:Sections>
<OpWatch:Section><OpWatch:ID>994504</OpWatch:ID>
<OpWatch:Name>Introduction</OpWatch:Name>
<OpWatch:Text><SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: 'Times New
Roman'; LETTER-SPACING: -0.1pt; mso-fareast-font-family: 'Times New Roman';
mso-bidi-font-size: 10.0pt; mso-ansi-language: EN-US; mso-fareast-language:
EN-US; mso-bidi-language: AR-SA"> Information
</SPAN>
</OpWatch:Text>
</OpWatch:Section>
</OpWatch:Sections>
</OpWatch:Plan>
When i search for
select * from plan where contains(planxml, '"<"')
the above record is returned. I dont want this to appear since (< is
encoded text for < in HTML).
Thanks
Navin
> You're welcome, Navin,
> Good news. However, in order to answer your question, I need to know the OS
[quoted text clipped - 59 lines]
> > > >
> > > > Navin