I've developed a document system that allows my client to upload several types of files: word, pdf, ppt, etc. in a database in which they are stored as binary data. The documents are entered in the database alongside certain metadata such as title, summary, owner, category, etc. Users can search for documents matching words in the titles and summaries. My client wants now users to be able to search the contents of the files. Without using SQL Server full-text search, what other option do I have? Many thanks!
Asked
Active
Viewed 859 times
0
-
Hmm... Make and store an index along the document? – khachik Mar 30 '11 at 16:34
-
@khachik Thanks, sorry could you roughly explain be how to do this on binary data types – netNewbi3 Apr 01 '11 at 12:11
-
how are you going to search in binary data? Does you binary data have a textual representation? Is it searchable? – khachik Apr 01 '11 at 12:18
2 Answers
0
Have you looked at Lucene? It is pretty much the de facto indexing engine. They have a .net version in incubation as well.

Scott
- 16,711
- 14
- 75
- 120