vote up 2 vote down star

We have a web application that uses SQL Server 2008 as the database. Our users are able to do full-text searches on particular columns in the database. SQL Server's full-text functionality does not seem to provide support for hit highlighting. Do we need to build this ourselves or is there perhaps some libraries or knowledge around on how to do this?

BTW the application is written in C# so a .Net solution would be ideal but not necessary as we could translate.

flag

4 Answers

vote up 0 vote down

It is unclear to me what your problem is. MSS will have hit highlighting no matter what backend you use. Also, the C# tag is irrelevant to the problem space...

link|flag
vote up 1 vote down

You might be missing the point of the database in this instance. Its job is to return the data to you that satisfies the conditions you gave it. I think you will want to implement the highlighting probably using regex in your web control.

Here is something a quick search would reveal.

http://www.dotnetjunkies.com/PrintContent.aspx?type=article&id=195E323C-78F3-4884-A5AA-3A1081AC3B35

link|flag
Thanks for the reply. While I realize that it is outside the scope of the database to do the highlighting, perhaps the database should provide hit locations etc rather than having to rely on regex etc which could be difficult/inaccurate when you consider the effects of stemming, stop words etc. – Phil Haselden Sep 16 '08 at 23:32
vote up 1 vote down

Some details:

			search_kiemeles=replace(lcase(search),"""","")
			do while not rs.eof  'The search result loop
				hirdetes=rs("hirdetes")
				data=RegExpValueA("([A-Za-zöüóőúéáűíÖÜÓŐÚÉÁŰÍ0-9]+)",search_kiemeles)	'Give back all the search words in an array, I need non-english characters also
				For i=0 to Ubound(data,1)
					hirdetes = RegExpReplace(hirdetes,"("&NoAccentRE(data(i))&")","<em>$1</em>")
				Next
				response.write hirdetes
				rs.movenext
			Loop
			...

Functions

'All Match to Array
Function RegExpValueA(patrn, strng)
	Dim regEx
	Set regEx = New RegExp   ' Create a regular expression.
	regEx.IgnoreCase = True   ' Set case insensitivity.
	regEx.Global = True
	Dim Match, Matches, RetStr
	Dim data()
	Dim count
	count = 0
	Redim data(-1)  'VBSCript Ubound array bug workaround
	if isnull(strng) or strng="" then
		RegExpValueA = data
		exit function
	end if
	regEx.Pattern = patrn   ' Set pattern.
	Set Matches = regEx.Execute(strng)   ' Execute search.
	For Each Match in Matches   ' Iterate Matches collection.
		count = count + 1
		Redim Preserve data(count-1)
	  data(count-1) = Match.Value
	Next
	set regEx = nothing
	RegExpValueA = data
End Function

'Replace non-english chars
Function NoAccentRE(accent_string)
	NoAccentRE=accent_string
	NoAccentRE=Replace(NoAccentRE,"a","§")
	NoAccentRE=Replace(NoAccentRE,"á","§")
	NoAccentRE=Replace(NoAccentRE,"§","[aá]")
	NoAccentRE=Replace(NoAccentRE,"e","§")
	NoAccentRE=Replace(NoAccentRE,"é","§")
	NoAccentRE=Replace(NoAccentRE,"§","[eé]")
	NoAccentRE=Replace(NoAccentRE,"i","§")
	NoAccentRE=Replace(NoAccentRE,"í","§")
	NoAccentRE=Replace(NoAccentRE,"§","[ií]")
	NoAccentRE=Replace(NoAccentRE,"o","§")
	NoAccentRE=Replace(NoAccentRE,"ó","§")
	NoAccentRE=Replace(NoAccentRE,"ö","§")
	NoAccentRE=Replace(NoAccentRE,"ő","§")
	NoAccentRE=Replace(NoAccentRE,"§","[oóöő]")
	NoAccentRE=Replace(NoAccentRE,"u","§")
	NoAccentRE=Replace(NoAccentRE,"ú","§")
	NoAccentRE=Replace(NoAccentRE,"ü","§")
	NoAccentRE=Replace(NoAccentRE,"ű","§")
	NoAccentRE=Replace(NoAccentRE,"§","[uúüű]")
end function
link|flag
vote up 0 vote down

It looks like you could parse the output of the new SQL Server 2008 stored procedure sys.dm_fts_parser and use regex, but I haven't looked at it too closely.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.