vote up 1 vote down star

I have an SQL Server 2005 table that has a varchar(250) field which contains keywords that I will use for searching purposes. I can't change the design. The data looks like this...

Personal, Property, Cost, Endorsement

What is the most efficient way to run search queries against these keywords? The only thing I can think of is this...

WHERE Keywords LIKE '%endorse%'
flag

75% accept rate
Do you allow commas in the search? – dotjoe Jul 15 at 15:55
Yes, commas are allowed. – Josh Stodola Jul 15 at 15:58

4 Answers

vote up 4 vote down check

Since normalization is not an option, the next best option is going to be to configure and use Full Text Search. This will maintain an internal search index that will make it very easy for you to search within your data.

The problem with solutions like LIKE '%pattern%' is that this will produce a full table scan (or maybe a full index scan) that could produce locks on a large amount of the data in your table, which will slow down any operations that hit the table in question.

link|flag
Looks like the right answer... but if FTI is not already enabled/configured/whatever in the system, would adding it in be as much a deal-breaker as modifying the table structure? – Philip Kelley Jul 15 at 16:44
With SQL Server 2005 you will have to get a DBA to install the FTS feature, so depending on the situation this could present difficulties. Once FTS is installed, creating the indexes is simple. This could be an easier sell than normalization, though, because other applications that access the source data won't need to be changed. – Jeremiah Peschka Jul 15 at 17:07
Thanks for the answer! How do I configure Full Text Search? Can you link me up, please? – Josh Stodola Jul 15 at 17:08
Installation instructions can be found here: msdn.microsoft.com/en-us/library/… And here's a big list of "how to" topics on FTS from Microsoft: msdn.microsoft.com/en-us/library/… – Jeremiah Peschka Jul 15 at 17:38
Thanks for the help, I think we will finally be installing this soon!! – Josh Stodola Nov 24 at 14:39
vote up 1 vote down

the most efficient way is to normalize your db design. never store CSV values into a single cell. other than using like you might consider full text search.

link|flag
Worthless answer. – Josh Stodola Jul 15 at 15:48
2  
are you quite sure about it being worthless? i gave you the only other valid option you can use. patindex and all other stuff is just like "Like" – Mladen Prajdic Jul 15 at 16:23
Outside of normalization (which isn't an option to OP), and PATINDEX, FTS is the other performant option. FTS is, honestly, probably the best option since it is going to be optimized for the volume of data you have and most likely will return better results in less time and with fewer I/O operations than PATINDEX. – Jeremiah Peschka Jul 15 at 16:26
vote up 0 vote down

If you have the freedom, change the design to reflect a tag system. With a table for these 'tags' which links them to the respective entries.

link|flag
I can't change the design. – Josh Stodola Jul 15 at 15:49
I'm curious. Even if I could change the design, what is this "tag" system? How is that designed? – Josh Stodola Jul 15 at 15:51
Just a very simple step of design normalization. Don't store your tags in strings but store them one entry each in a 'tags' table (n:n). – tharkun Jul 15 at 16:00
Then you can do JOIN queries, count how many times a certain tag is used, count the number of tags per main entry, etc. – tharkun Jul 15 at 16:01
Can you add to the design without changing the existing? If you think that WHERE Keywords LIKE '%endorse%' is not efficient enough you could have a background process index these strings. E.g. have a cron job, cut these strings up into single units and store them in a tags table and reference them. – tharkun Jul 15 at 16:06
show 7 more comments
vote up 0 vote down

You could use PATINDEX()

USE AdventureWorks;
GO
SELECT PATINDEX('%ensure%',DocumentSummary)
FROM Production.Document
WHERE DocumentID = 3;
GO

http://msdn.microsoft.com/en-us/library/ms188395%28SQL.90%29.aspx

link|flag
Thanks. Do you think this is more efficient than LIKE? – Josh Stodola Jul 15 at 15:50
1  
According to the first comment here: sqlblog.com/blogs/adam_machanic/…, Full Text indexing might be an even better way to go. Full Text: msdn.microsoft.com/en-us/library/… – Shane Cusson Jul 15 at 16:12

Your Answer

Get an OpenID
or

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