Thanks very much Hilary. I assume from your answer that there is therefore
no built-in support for such abstracts?
Not in this current version, or the next.

Signature
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
> Thanks very much Hilary. I assume from your answer that there is therefore
> no built-in support for such abstracts?
[quoted text clipped - 13 lines]
> >
> > set @MarkedupSearchPhrase ='<B>shadow</B>'
select --1,firstword=len(@searchphrase)-(len(substring(charcol,charindex(@se
> > archphrase,
charcol)-50,100))-charindex('shadow',substring(charcol,charindex(@searchphra
> > se, charcol)-50,100))),
> >
> > --len(substring(charcol,charindex(@searchphrase, charcol)-50,100)),
> >
> > MarkedUpColumn = case when len(charcol) >100 and
> > len(@searchphrase)-(len(substring(charcol,charindex(@searchphrase,
charcol)-50,100))-charindex(@SearchPhrase,substring(charcol,charindex(@searc
> > hphrase, charcol)-50,100))) <>-1 then
replace(ltrim(substring(replace(substring(charcol,charindex(@searchphrase,
charcol)-50,100),@searchphrase,@MarkedupSearchPhrase),1,len(replace(substrin
> > g(charcol,charindex(@searchphrase,
> > charcol)-50,100),@searchphrase,@MarkedupSearchPhrase))-
> > len(left(reverse(replace(substring(charcol,charindex(@searchphrase,
> > charcol)-50,100),@searchphrase,@MarkedupSearchPhrase)),charindex('
> > ',reverse(replace(substring(charcol,charindex(@searchphrase,
charcol)-50,100),@searchphrase,@MarkedupSearchPhrase))))))),char(13)+char(10
> > ),' ')
> >
> > when len(charcol) >100 and
> > len(@searchphrase)-(len(substring(charcol,charindex(@searchphrase,
charcol)-50,100))-charindex(@SearchPhrase,substring(charcol,charindex(@searc
> > hphrase, charcol)-50,100))) =-1 then
> > replace(substring(charcol,charindex(@searchphrase,
> > charcol)-50,100),@searchphrase,@MarkedupSearchPhrase)
> >
> > else replace(replace(substring(charcol,charindex(@searchphrase,
charcol)-50,100),@searchphrase,@MarkedupSearchPhrase),char(13)+char(10),' ')
> > end
> >
[quoted text clipped - 26 lines]
> > >
> > > Many thanks!