i want to write a query with Full-Text-Search on a column with varbinary(max) type that stored a .doc/.docx(MS-Word) file. my query must returns records that contain a word in stored file.

is this possible?

if yes,how?(please write an example)

if yes,can we write that for other language(e.g Arabic,Persian or a UniCode characters)?

thank you beforehand.

link|improve this question

55% accept rate
Have you thought of using Lucene for this? – James Black Sep 2 '09 at 5:09
No! I will buy it. – Meysam Javadi Sep 2 '09 at 5:22
feedback

3 Answers

up vote 1 down vote accepted

What you're looking for is fulltext indexing, which has been greatly improved in SQL Server 2008.

For an introduction, I would recommend checking out these articles here:

Once you understand this and have created your own fulltext catalog, you should be able to search something like this:

SELECT ID, (other fields), DocumentColumn
FROM dbo.YourTable
WHERE CONTAINS(*, 'Microsoft Word')

And yes, Fulltext indexing and searching does support lots of languages - check out the links I've sent you and the SQL Server 2008 Books Online for details!

Marc

link|improve this answer
feedback

If you have SQL Server 2005 or later, yes, you just need the filters:

http://www.microsoft.com/downloads/details.aspx?FamilyId=60C92A37-719C-4077-B5C6-CAC34F4227CC&displaylang=en

If you have SQL Server 2000, doc files can be indexed, but not the newer Office 2007 format as far as I know (I've heard you may be able to borrow the IFilter by installing Word 2007 on the server).

link|improve this answer
thanks for your answer, i have SQL Server 2008 and .doc file. if possible, write an example. – Meysam Javadi Sep 2 '09 at 5:25
feedback

I haven't tried it, but this example may be what you want, and the second one is a better example of setting up full text search. Again, in the first article is a link for the Office 2007 filter.

http://blogs.technet.com/andrew/archive/2008/06/05/a-rough-guide-to-full-text-search-in-sql-server-2008.aspx

http://blog.sqlauthority.com/2008/09/05/sql-server-creating-full-text-catalog-and-index/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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